Justin Black bf24d646c5 [PHP] fix php-slim4-server CI tests #4994 (#4995)
* Suggested no-api fix

* Adds sample update
2020-01-14 08:29:18 +03:00

42 lines
928 B
JSON

{
"minimum-stability": "RC",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ybelenko/slim-token-authentication",
"no-api": true
}
],
"require": {
"php": "^7.1",
"slim/slim": "^4.0",
"dyorg/slim-token-authentication": "dev-slim4",
"slim/psr7": "^0.4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0 || ^7.0",
"overtrue/phplint": "^1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": { "OpenAPIServer\\": [
"lib/",
"src/"
]}
},
"autoload-dev": {
"psr-4": { "OpenAPIServer\\": "test/" }
},
"scripts": {
"test": [
"phpunit"
],
"test-apis": "phpunit --testsuite Apis",
"test-models": "phpunit --testsuite Models",
"test-mock": "phpunit --testsuite Mock",
"test-utils": "phpunit --testsuite Utils",
"phpcs": "phpcs",
"phplint": "phplint ./ --exclude=vendor"
}
}