-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.13 KB
/
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
41
42
43
44
45
46
47
48
49
{
"name": "dogado/json-api-server",
"description": "Abstract server side php implementation of the JSON:API protocol.",
"keywords": [
"dogado",
"json api"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dogado-group/json-api-server",
"require": {
"php": "^8.0",
"ext-json": "*",
"dogado/json-api-common": "^3.0",
"symfony/validator": "^5.3.7|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.20",
"phpstan/phpstan": "^1.8",
"guzzlehttp/psr7": "^2.4",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Dogado\\JsonApi\\Server\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dogado\\JsonApi\\Server\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"phpunit",
"phpstan analyse",
"phpcs --standard=phpcs.xml"
],
"cs": "phpcs --standard=phpcs.xml",
"stan": "phpstan analyse",
"unit": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"symfony/expression-language": "For using the Expression validator in models."
}
}