expatbase/var/www/html/flarum/vendor/sycho/json-api/composer.json
2025-08-29 00:22:05 +09:00

39 lines
852 B
JSON
Executable file

{
"name": "sycho/json-api",
"description": "JSON-API responses in PHP",
"keywords": ["json", "api", "standard", "jsonapi"],
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Tobscure\\JsonApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tobscure\\Tests\\JsonApi\\": "tests/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml.dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}