-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "x-wp/whoops",
"description": "Whoops error handler for WordPress",
"license": "GPL-2.0-only",
"type": "library",
"keywords": [
"wordpress",
"dev",
"whoops",
"error-handler",
"extended-wp"
],
"authors": [
{
"name": "Sibin Grasic",
"email": "sibin.grasic@oblak.studio"
}
],
"support": {
"issues": "https://github.com/x-wp/whoops/issues"
},
"require": {
"php": ">=8.0",
"automattic/jetpack-constants": "^2.0",
"filp/whoops": "^2.16",
"x-wp/helper-functions": "^1.13"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1.1",
"php-stubs/wordpress-stubs": "^6.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"swissspidy/phpstan-no-private": "^0.2",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"provide": {
"x-wp/di-implementation": "self.version"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package.",
"symfony/var-dumper": "Pretty print complex values better with var-dumper available",
"whoops/soap": "Formats errors as SOAP responses"
},
"autoload": {
"psr-4": {
"XWP\\Whoops\\": "src/"
},
"classmap": [
"src/Core/"
],
"files": [
"src/Functions/xwp-whoops-init.php"
]
},
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}