45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "tobyz/json-api-server",
|
|
"description": "A fully automated JSON:API server implementation in PHP.",
|
|
"require": {
|
|
"php": "^7.2",
|
|
"doctrine/inflector": "^1.3",
|
|
"json-api-php/json-api": "^2.0",
|
|
"psr/http-message": "^1.0",
|
|
"psr/http-server-handler": "^1.0",
|
|
"zendframework/zend-diactoros": "^2.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.1.0",
|
|
"helmich/phpunit-json-assert": "^3.0",
|
|
"phpunit/phpunit": "^8.0"
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|