-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 940 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/rest-logger",
"type": "wordpress-plugin",
"description": "A WordPress Plugin that logs WP-API REST Requests.",
"homepage": "https://github.com/kjbenk/rest-logger",
"license": "GPL2+",
"authors": [
{
"name": "Kyle Benk",
"homepage": "http://kylebenk.com"
}
],
"support": {
"issues": "https://github.com/kjbenk/rest-logger/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-rest-logger"
},
"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"
}
}