-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
31 lines (31 loc) · 825 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
{
"name": "torounit/simple-post-type-permalinks",
"description": "Easy to change Permalink of custom post type.",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Hiroshi Urabe",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"ext-mbstring": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"wp-coding-standards/wpcs": "0.9.0"
},
"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"
]
}
}