forked from tobyzerner/json-api-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.12 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": "tobyz/json-api-server",
"description": "A fully automated JSON:API server implementation in PHP.",
"require": {
"php": ">=7.1",
"ext-json": "*",
"doctrine/inflector": "^1.4 || ^2.0",
"json-api-php/json-api": "^2.2",
"nyholm/psr7": "^1.3",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"hnet/http-accept": "^0.1"
},
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"autoload": {
"psr-4": {
"Tobyz\\JsonApiServer\\": "src/"
},
"files": [
"src/functions.php",
"src/functions_laravel.php"
]
},
"autoload-dev": {
"psr-4": {
"Tobyz\\Tests\\JsonApiServer\\": "tests/"
}
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.2.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}