This repository has been archived by the owner on Nov 23, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (70 loc) · 2.16 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
70
71
72
73
74
{
"name": "acelaya/ze-content-based-error-handler",
"description": "A Zend Expressive error handler which allows to implement different strategies based on the accepted content-types",
"type": "library",
"license": "MIT",
"keywords": [
"expressive",
"zend",
"zf",
"zf3",
"error handler"
],
"require": {
"php": "^7.2",
"psr/log": "^1.0",
"zendframework/zend-expressive": "^3.0",
"zendframework/zend-servicemanager": "^3.0"
},
"require-dev": {
"infection/infection": "^0.14.1",
"phpstan/phpstan": "^0.11.15",
"phpunit/phpunit": "^8.3",
"shlinkio/php-coding-standard": "~2.0.0",
"zendframework/zend-diactoros": "^2.1.3"
},
"authors": [
{
"name": "Alejandro Celaya",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Acelaya\\ExpressiveErrorHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AcelayaTest\\ExpressiveErrorHandler\\": "test"
}
},
"scripts": {
"ci": [
"@cs",
"@stan",
"@test:ci",
"@infect:ci"
],
"cs": "phpcs",
"cs:fix": "phpcbf",
"stan": "phpstan analyse src/ --level=6",
"test": "phpdbg -qrr vendor/bin/phpunit --colors=always --testdox",
"test:pretty": "phpdbg -qrr vendor/bin/phpunit --coverage-html build/coverage --testdox",
"test:ci": "phpdbg -qrr vendor/bin/phpunit --colors=always --coverage-clover=build/clover.xml --coverage-xml=build/coverage-xml --log-junit=build/phpunit.junit.xml --testdox",
"infect": "infection --threads=4 --min-msi=70 --log-verbosity=default --only-covered",
"infect:ci": "infection --threads=4 --min-msi=70 --log-verbosity=default --only-covered --coverage=build",
"infect:test": [
"@test:ci",
"@infect:ci"
]
},
"extra": {
"zf": {
"config-provider": "Acelaya\\ExpressiveErrorHandler\\ConfigProvider"
}
},
"config": {
"sort-packages": true
}
}