-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 789 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 789 Bytes
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
{
"name": "pryley/blackbar",
"type": "wordpress-plugin",
"description": "Black Bar is a Debug Bar for WordPress developers",
"keywords": [
"wordpress",
"plugin",
"debug",
"debug bar",
"blackbar"
],
"license": "GPLv3",
"authors": [
{
"name": "Paul Ryley",
"email": "paul@geminilabs.io"
}
],
"archive": {
"exclude": [
"/+",
"/tests",
"/.*",
"/*.md",
"/*.mjs",
"/*.js",
"/*.json",
"/*.lock",
"/*.sh",
"/*.xml"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpstan/phpstan": "^1.9.4",
"szepeviktor/phpstan-wordpress": "^1.1.6"
}
}