-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 958 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
{
"name": "kingdom-one/wordpress-theme",
"description": "a template theme to fork",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "*",
"php-stubs/acf-pro-stubs": "^6.2"
},
"scripts": {
"phpcbf": "phpcbf wp-content/themes/k1-theme/ --extensions=php --ignore=wp-content/themes/k1-theme/dist/,wp-content/themes/k1-theme/acf/json/",
"phpcs": "phpcs wp-content/themes/k1-theme/ --extensions=php --ignore=wp-content/themes/k1-theme/dist/,wp-content/themes/k1-theme/acf/json/"
}
}