-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 980 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"minimum-stability": "stable",
"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",
"csanquer/pdo-service-provider": "~1.1dev"
},
"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"
}
}