forked from scottsawyer/acf-component-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 963 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
36
{
"name": "scottsawyer/acf-component-manager",
"description": "Allows organizing Advanced Custom Fields into theme components.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/scottsawyer/acf-component-manager",
"authors": [
{
"name": "Scott Sawyer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^1.0.1"
},
"scripts":{
"phpcs": [
"@php vendor/bin/phpcs -p -s -v -n --standard=./.phpcs.xml.dist --extensions=php"
],
"format": [
"@php vendor/bin/phpcbf --standard=./.phpcs.xml.dist --report-summary --report-source"
],
"test": "@php ./vendor/phpunit/phpunit/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}