-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 882 Bytes
/
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
{
"name": "grd/bb-child",
"description": "A child theme for Beaver Builder by Greg Rickaby.",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Greg Rickaby",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-cli/wp-cli-bundle": "^2.7",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"format": "./vendor/bin/phpcbf --standard=.phpcs.xml --report=summary,source",
"lint": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary,source"
}
}