-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.05 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
{
"name": "dogado/json-api-common",
"description": "Common interfaces and classes which represent the JSON:API protocol in order to build a client or server application.",
"keywords": [
"dogado",
"json api"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dogado-group/json-api-common",
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.20",
"guzzlehttp/psr7": "^2.4",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7",
"nikic/php-parser": "^4.15"
},
"autoload": {
"psr-4": {
"Dogado\\JsonApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dogado\\JsonApi\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"phpunit",
"phpstan analyse",
"phpcs --standard=phpcs.xml"
],
"unit": "phpunit",
"stan": "phpstan analyse",
"cs": "phpcs --standard=phpcs.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}