-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.62 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
{
"name": "lcobucci/error-handling-middleware",
"description": "A PSR-15 middleware compatible with RFC 7807",
"license": "MIT",
"type": "library",
"keywords": [
"PSR-15",
"RFC-7807",
"error handling"
],
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"fig/http-message-util": "^1.1",
"lcobucci/content-negotiation-middleware": "^3.1",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"infection/infection": "^0.26",
"laminas/laminas-diactoros": "^2.19",
"lcobucci/coding-standard": "^8.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Lcobucci\\ErrorHandling\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lcobucci\\ErrorHandling\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}