-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1002 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": "lemonphp/json-api",
"description": "A PHP7 implement of JSON API specification",
"keywords": ["json-api", "api"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/lemonphp/json-api",
"support": {
"issues": "https://github.com/lemonphp/json-api/issues",
"source": "https://github.com/lemonphp/json-api"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Lemon\\JsonApi\\": "src/"
}
},
"scripts": {
"phpunit": "php vendor/phpunit/phpunit/phpunit --coverage-html build/",
"phpcs": "php vendor/squizlabs/php_codesniffer/bin/phpcs",
"phpcbf": "php vendor/squizlabs/php_codesniffer/bin/phpcbf"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}