-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 928 Bytes
/
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
{
"name": "camelot/thrower",
"description": "Static class to catch & rethrow PHP errors.",
"license": "MIT",
"authors": [
{
"name": "Carson Full",
"email": "[email protected]"
},
{
"name": "Gawain Lynch",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3 || ^8.0"
},
"require-dev": {
"camelot/coding-style": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^7.5 || ^8.3 || ^9.5",
"symfony/phpunit-bridge": "^4.3 || ^5.0"
},
"scripts": {
"test": "phpunit",
"lint": [
"php-cs-fixer fix"
]
},
"autoload": {
"psr-4": {
"Camelot\\Thrower\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\Thrower\\Tests\\": "tests"
}
}
}