-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (48 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
{
"name": "decodelabs/glitch",
"description": "Better tools for when things go wrong",
"type": "library",
"keywords": [ "dump", "dumper", "exception", "debug" ],
"license": "MIT",
"authors": [ {
"name": "Tom Wright",
"email": "[email protected]"
} ],
"require": {
"php": "^8.1",
"symfony/polyfill-mbstring": "^1.7",
"symfony/polyfill-php82": "^1.29",
"decodelabs/coercion": "^0.2",
"decodelabs/enlighten": "^0.9",
"decodelabs/exceptional": "^0.4.1",
"decodelabs/glitch-support": "^0.4.6",
"decodelabs/veneer": "^0.11.6",
"psr/log": "^3.0"
},
"require-dev": {
"decodelabs/phpstan-decodelabs": "^0.6.1",
"decodelabs/zest": "^0.2.15",
"symfony/var-dumper": "^5|^6",
"php-ds/php-ds": "~1.2"
},
"autoload": {
"psr-4": {
"DecodeLabs\\Glitch\\": "src/Glitch"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-develop": "0.18.x-dev"
}
},
"repositories": {
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}