mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 00:21:19 +00:00
30 lines
698 B
JSON
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"
|
|
}
|
|
}
|