-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 951 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 951 Bytes
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
{
"name": "componenta/error-handler",
"description": "HTTP and CLI error handling for Componenta",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.4",
"ext-mbstring": "*",
"componenta/config": "^1.0",
"nyholm/psr7-server": "^1.1",
"psr/container": "^2.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0",
"symfony/console": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"Componenta\\Error\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Componenta\\Error\\Tests\\": "tests/"
}
},
"require-dev": {
"nyholm/psr7": "^1.8"
},
"minimum-stability": "stable",
"extra": {
"componenta": {
"config-providers": [
"Componenta\\Error\\ConfigProvider"
]
}
}
}