-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (61 loc) · 1.59 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
{
"name": "italystrap/debug",
"description": "Classes and functions for handling debug",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "overclokk",
"email": "info@overclokk.net",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.4",
"kint-php/kint" : "^5.0",
"filp/whoops": "^2.15",
"symfony/var-dumper": "^5.2"
},
"require-dev": {
"lucatume/wp-browser": "^3.1",
"inpsyde/wp-stubs": "dev-main",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"autoload": {
"psr-4": {
"ItalyStrap\\Debug\\": "src/"
},
"files": [
"functions/helpers.php",
"functions/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"ItalyStrap\\Tests\\": "tests/src/",
"ItalyStrap\\Tests\\WPUnit\\": "tests/wpunit/"
}
},
"suggest": {},
"scripts": {
"cs": [
"@php vendor/bin/phpcs -p"
],
"cs:fix": [
"@php vendor/bin/phpcbf -p"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/debug/issues",
"source": "https://github.com/ItalyStrap/debug"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}