-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
35 lines (35 loc) · 938 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
35
{
"name": "webdevstudios/wds-acf-blocks",
"description": "A set of custom Gutenberg blocks built with Advanced Custom Fields Pro.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "WebDevStudios",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"composer/installers": "^1.5 || ^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.1",
"wp-cli/wp-cli-bundle": "^2.5.0",
"wp-coding-standards/wpcs": "^2.3.0"
},
"scripts": {
"format": "phpcbf --report=summary,source",
"lint": "phpcs --report=summary,source",
"pot": "wp i18n make-pot . build/languages/abs.pot --exclude=node_modules,vendor,build --allow-root"
}
}