-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 916 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
{
"name": "kjbenk/wp-rest-api-hello-world",
"type": "wordpress-plugin",
"description": "Manage your WordPress Site.",
"homepage": "http://wp-api.org/",
"license": "GPL2+",
"authors": [
{
"name": "Kyle Benk",
"homepage": "http://wp-api.org/"
}
],
"support": {
"issues": "https://github.com/kjbenk/wp-rest-api-hello-world/issues"
},
"require": {
"composer/installers": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.3.4",
"wp-coding-standards/wpcs": "0.6.0"
},
"extra": {
"installer-name": "json-rest-api-wprahw"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
}
}