-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.07 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "davekellam/davekellam.com",
"type": "wordpress-site",
"authors": [
{
"name": "Dave Kellam",
"email": "kellam@gmail.com",
"homepage": "https://davekellam.com"
}
],
"require": {
"php": ">=8.2",
"johnbillion/extended-cpts": "5.1",
"davekellam/dont-mess-up-prod": "dev-main",
"composer/installers": "^2.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"davekellam/phpcs-wp": "dev-main",
"johnbillion/query-monitor": "*"
},
"scripts": {
"core:lint": "phpcs --standard=phpcs.xml -s ./mu-plugins/dk-core/",
"core:fix": "phpcbf ./mu-plugins/dk-core/",
"theme:lint": "phpcs --standard=phpcs.xml -s ./themes/quarter/",
"theme:fix": "phpcbf ./themes/quarter/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"vendor-dir": "mu-plugins/dk-core/vendor"
},
"extra": {
"installer-paths": {
"plugins/{$name}/": [
"type:wordpress-plugin"
]
}
}
}