-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
28 lines (28 loc) · 965 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
{
"name": "torounit/hello-kushimoto",
"description": "This is not just a plugin. When activated you will randomly see a Quotations of legendry engineer Mr. M in the upper right of your admin screen on every page.",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Hiroshi Urabe",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"post-install-cmd": [
"php vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs/"
],
"post-update-cmd": [
"php vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs/"
],
"phpcs": [
"php vendor/bin/phpcs -p -s -v -n . --standard=./codesniffer.ruleset.xml --extensions=php"
]
}
}