-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 KB
/
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": "sarahcssiqueira/wxyz-blocks",
"description": "Custom Gutenberg blocks.",
"license": "GPL-2.0+",
"type": "wordpress-plugin",
"authors": [
{
"name": "sarahcssiqueira",
"email": "[email protected]",
"homepage": "https://sarahjobs.com"
}
],
"support": {
"src": "https://github.com/sarahcssiqueira/wxyz-blocks",
"issues": "https://github.com/sarahcssiqueira/wxyz-blocks/issues"
},
"autoload": {
"psr-4": {
"WXYZBlocks\\Inc\\": "inc/"
}
},
"scripts": {
"cstd": "./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"cs": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary .",
"cbf": "./vendor/bin/phpcbf --standard=.phpcs.xml .",
"test": "vendor/bin/phpunit"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2",
"yoast/phpunit-polyfills" : "*"
}
}