-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 843 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 843 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
{
"name": "kuria/error",
"description": "Makes handling and debugging PHP errors suck less",
"keywords": ["error", "exception", "error handler", "exception handler", "fatal", "debug", "debugger", "stack", "trace"],
"license": "MIT",
"require": {
"php": ">=7.1",
"kuria/event": "^2.0",
"kuria/debug": "^4.0",
"kuria/php-highlighter": "^2.0 || ^3.0"
},
"require-dev": {
"ext-mbstring": "*",
"kuria/dev-meta": "^0.6"
},
"autoload": {
"psr-4": {
"Kuria\\Error\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kuria\\Error\\": "tests"
}
},
"extra": {
"package-scripts-vars": {
"kuria/dev-meta": {
"phpcs.standard": "./phpcs.xml"
}
}
}
}