forked from filp/whoops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.4 KB
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
{
"name": "leafs/exception",
"license": "MIT",
"description": "Error handler for leaf (fork of whoops)",
"keywords": [
"library",
"error",
"handling",
"exception",
"whoops",
"throwable"
],
"homepage": "https://github.com/leafsphp/exception",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"scripts": {
"alchemy": "@php vendor/bin/alchemy all",
"test": "@php vendor/bin/alchemy test",
"lint": "@php vendor/bin/alchemy lint",
"fmt": "@php vendor/bin/alchemy fmt",
"analyse": "@php vendor/bin/alchemy analyse",
"refactor": "@php vendor/bin/alchemy refactor",
"ci": "@php vendor/bin/alchemy ci"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"leafs/alchemy": "^5.0",
"friendsofphp/php-cs-fixer": "*",
"pestphp/pest": "*"
},
"suggest": {
"symfony/var-dumper": "Pretty print complex values better with var-dumper available"
},
"autoload": {
"psr-4": {
"Leaf\\": "src"
},
"files": [
"src/functions.php"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}