-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·69 lines (58 loc) · 1.72 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
66
67
68
69
{
"name": "germania-kg/responder",
"description": "Responder interfaces and classes for ADR pattern",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Germania\\Responder\\": "src"
}
},
"require": {
"php": "^7.1|^8.0",
"psr/http-message": "^1.0",
"nyholm/psr7": "^1.4"
},
"autoload-dev": {
"psr-4": {
"tests\\": [
"tests",
"tests/unit"
]
}
},
"require-dev": {
"twig/twig": "^3.0",
"phpunit/phpunit" : "^9.0",
"phpspec/prophecy-phpunit" : "^2.0",
"php-coveralls/php-coveralls" : "^2.0",
"friendsofphp/php-cs-fixer" : "^2.0|^3.0",
"spatie/phpunit-watcher" : "^1.23",
"phpstan/phpstan" : "^0.12",
"roave/security-advisories" : "dev-latest",
"tomkyle/mock-psr" : "^1.2",
"overtrue/phplint" : "^3.0"
},
"scripts": {
"lint" : "phplint ./ --exclude=vendor --no-interaction --no-cache --ansi",
"phpcs" : "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs-apply" : "php-cs-fixer fix --verbose --diff src/",
"phpunit" : "phpunit --testdox",
"phpstan" : "phpstan analyse src tests --level 2",
"watch" : "phpunit-watcher watch",
"test:all": [
"@lint",
"@test"
],
"test": [
"@test:unit"
],
"test:unit" : [ "@phpunit --testsuite unit" ]
}
}