-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 974 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": "wp-api/wp-api-sites-endpoint",
"type": "wordpress-plugin",
"description": "Manage your WordPress sites in a multisite.",
"homepage": "http://wp-api.org/",
"license": "GPL2+",
"authors": [
{
"name": "WP-API Team",
"homepage": "http://wp-api.org/"
}
],
"support": {
"issues": "https://github.com/WP-API/WP-API/issues",
"forum": "https://wordpress.org/support/plugin/rest-api"
},
"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"
},
"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"
}
}