-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 840 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"description": "A library to get requested query from the client and generate a query for Doctrine, Cake-php ORM or Laravel Eloquent",
"name": "paknahad/querifier",
"type": "library",
"license": "MIT",
"keywords": ["filter", "query", "parser", "php", "RESTful", "doctrine", "symfony", "cakephp"],
"authors": [
{
"name": "Hamid Paknahad",
"email": "hp.paknahad@gmail.com"
}
],
"require": {
"php": ">=7.1",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"phpunit/phpunit": "^7.0.0",
"doctrine/orm": "^2.6"
},
"autoload": {
"psr-4": { "Paknahad\\Querifier\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Paknahad\\Querifier\\Tests\\": "tests/" }
}
}