-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 927 Bytes
/
composer.json
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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "facile/json-api-php",
"description": "",
"type": "library",
"license": "proprietary",
"require": {
"php": "^7.1",
"ext-json": "*",
"psr/container": "^1.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^0.3.1",
"phpstan/phpstan": "^0.12.8",
"phpunit/phpunit": "^7.5|^8.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Facile\\JsonApiPhp\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Facile\\JsonApiPhp\\Tests\\": "tests/"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff"
}
}