Files
openapi-generator/samples/server/petstore/php-slim/composer.json
2018-08-31 20:34:06 +08:00

30 lines
698 B
JSON

{
"minimum-stability": "RC",
"require": {
"php": ">=5.5.9",
"slim/slim": "3.*",
"tuupola/slim-basic-auth": "^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"overtrue/phplint": "^1.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": { "OpenAPIServer\\": "lib/" }
},
"autoload-dev": {
"psr-4": { "OpenAPIServer\\": "test/" }
},
"scripts": {
"test": [
"@test-apis",
"@test-models"
],
"test-apis": "phpunit --testsuite Apis",
"test-models": "phpunit --testsuite Models",
"phpcs": "phpcs ./ --ignore=vendor --warning-severity=0 --standard=PSR12",
"phplint": "phplint ./ --exclude=vendor"
}
}