-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.05 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "webdevstudios/wds-bt",
"description": "A FSE/Gutenberg block starter theme from WebDevStudios.",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WebDevStudios",
"email": "contact@webdevstudios.com"
}
],
"config": {
"platform": {
"php": "8.3"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"squizlabs/php_codesniffer": true,
"wp-coding-standards/wpcs": true
},
"sort-packages": true
},
"require": {
"composer/installers": "2.3.0"
},
"require-dev": {
"php": ">=8.3",
"dealerdirect/phpcodesniffer-composer-installer": "1.2.0",
"phpcompatibility/phpcompatibility-wp": "2.1.8",
"squizlabs/php_codesniffer": "3.13.5",
"wp-cli/wp-cli-bundle": "2.12.0",
"wp-coding-standards/wpcs": "^3.3"
},
"scripts": {
"phpcs": [
"./scripts/run-phpcs.sh --report=full,source"
],
"phpcs-fix": [
"./scripts/run-phpcbf.sh --report=summary,source"
],
"post-install-cmd": [
"./scripts/update-cursorrules.sh"
]
}
}