forked from WP-API/WP-API
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.28 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.28 KB
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "cutv-api/cutv-api",
"type": "wordpress-plugin",
"description": "Access your WordPress site's data through an easy-to-use HTTP REST API.",
"homepage": "http://cutv-api.org/",
"license": "GPL2+",
"authors": [
{
"name": "WP-API Team",
"homepage": "http://cutv-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",
"php": ">=5.3",
"flowjs/flow-php-server": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.3.4",
"wp-coding-standards/wpcs": "0.6.0",
"mikey179/vfsStream": "v1.2.0",
"league/phpunit-coverage-listener": "~1.1",
"fabpot/php-cs-fixer": "dev-master",
"phpunit/phpunit": "4.*"
},
"extra": {
"installer-name": "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"
},
"autoload": {
"psr-0": {
"Flow": "src"
}
}
}