-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
32 lines (32 loc) · 868 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
{
"name": "morganhvidt/find-my-blocks",
"description": "The Find My Block plugin for WordPress - Composer installs coding standards.",
"authors": [
{
"name": "Morgan Hvidt",
"homepage": "https://morganhvidt.com/"
}
],
"type": "wordpress-plugin",
"license": "GPL-2.0",
"require-dev": {
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set default_standard WordPress",
"\"vendor/bin/phpcbf\" --config-set default_standard WordPress"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set default_standard WordPress",
"\"vendor/bin/phpcbf\" --config-set default_standard WordPress"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true
}
}
}