-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "drewapicture/debug-bar-console",
"description": "Adds a PHP/SQL console panel to Debug Bar.",
"type": "wordpress-plugin",
"license": "GPLv2",
"authors": [
{
"name": "Drew Jaynes",
"homepage": "https://werdswords.com/"
}
],
"autoload": {
"psr-4": {
"DebugBarConsole\\": "src/"
}
},
"require": {
"php": "^7.4|^8"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpunit/phpunit": "^9.6",
"brain/monkey": "^2.7",
"laravel/pint": "^1.29",
"matthiasmullie/minify": "^1.3",
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"minify": "php bin/minify.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"ignore": [
"PKSA-5jz8-6tcw-pbk4"
]
}
}
}