-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.06 KB
/
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
43
{
"require": {
"slim/slim": "^4.10",
"slim/psr7": "^1.5"
},
"autoload": {
"psr-4": {
"Api\\": "src",
"Tests\\": "tests"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^5.1",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5",
"behat/behat": "^3.10",
"libresign/behat-builtin-extension": "^0.5.1",
"guzzlehttp/guzzle": "^7.4",
"byjg/swagger-test": "dev-bugfix/remove-deprecated-var-usage"
},
"scripts" : {
"phpcs" : "phpcs",
"phpcbf" : "phpcbf",
"psalm" : "psalm",
"phpstan" : "phpstan analyse src --level 5",
"phpunit": "phpunit --color tests",
"behat": "behat",
"test" : [
"@phpcs",
"@psalm",
"@phpstan",
"@phpunit",
"@behat"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/vitormattos/php-swagger-test/"
}
]
}