-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jdolba/slim-http-smoke-testing",
"type": "library",
"description": "HTTP Smoke Testing for your Slim Framework based application",
"keywords": [
"jdolba",
"slim-http-smoke-testing",
"Slim",
"Slim Framework"
],
"homepage": "https://github.com/jdolba/slim-http-smoke-testing",
"license": "MIT",
"authors": [
{
"name": "Jakub Dolba",
"email": "[email protected]",
"homepage": "https://github.com/jDolba",
"role": "Developer"
}
],
"require": {
"php": "~7.1||~8.0",
"slim/slim": "~3.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"JDolba\\SlimHttpSmokeTesting\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\JDolba\\SlimHttpSmokeTesting\\": "tests"
},
"classmap": [
"example/tests/MyAwesomeApplicationSmokeTest.php"
]
},
"scripts": {
"test": [
"phpunit",
"phpunit example/tests/MyAwesomeApplicationSmokeTest.php"
],
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"check-phpstan": "phpstan analyse src tests example -l 7",
"checks": [
"@check-style",
"@check-phpstan"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}