-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 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
{
"name": "eboreum/exceptional",
"description": "Create and format PHP exceptions easily. Automatically unravel method arguments. Ensure that sensitive strings like passwords, tokens, PHPSESSID, etc. are being masked and thus will instead appear as e.g. \"******\" in the resulting text.",
"type": "library",
"require": {
"php": "^8.1",
"eboreum/caster": "^1.0"
},
"require-dev": {
"nette/neon": "^3.2",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"sebastian/diff": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "Kasper Søfren",
"email": "[email protected]",
"homepage": "https://github.com/kafoso"
},
{
"name": "Carsten Jørgensen",
"email": "[email protected]",
"homepage": "https://github.com/corex"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Eboreum\\Exceptional\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TestResource\\Unit\\Eboreum\\Exceptional\\": "tests/resources/TestResource/Unit",
"Test\\Unit\\Eboreum\\Exceptional\\": "tests/tests/Test/Unit"
}
}
}