forked from Rarst/wps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1019 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "rarst/wps",
"description": "WordPress plugin for whoops error handler.",
"keywords": [
"wordpress",
"whoops",
"error"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/Rarst/wps",
"license": "MIT",
"authors": [
{
"name": "Andrey Savchenko",
"email": "[email protected]",
"homepage": "http://www.Rarst.net/"
}
],
"support": {
"issues": "https://github.com/Rarst/wps/issues"
},
"require": {
"php": ">=7.2.5|^8",
"composer/installers": "^1.11 || ^2.2"
},
"require-dev": {
"filp/whoops": "^2.15.2",
"pimple/pimple": "^3.5",
"symfony/var-dumper": "^6.0.19"
},
"autoload": {
"psr-4": {
"Rarst\\wps\\": "src/"
},
"classmap": [
"vendor_prefixed/"
]
},
"scripts": {
"prefix": "./tools/php-scoper add-prefix -f"
},
"config": {
"allow-plugins": {
"composer/installers": true
},
"platform": {
"php": "8.0.2"
},
"platform-check": false
}
}