forked from wp-cli/restful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 961 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
32
33
34
35
36
37
38
39
{
"name": "wp-cli/restful",
"description": "Unlock the potential of the WP REST API at the command line.",
"type": "wp-cli-package",
"license": "MIT",
"authors": [
{
"name": "Daniel Bachhuber",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [ "wp-rest-cli.php" ]
},
"require": {
"wp-cli/wp-cli": "*"
},
"require-dev": {
"behat/behat": "~2.5"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"readme": {
"package_description": {
"post": "bin/readme-stubs/package-description-post.md"
},
"using": {
"body": "bin/readme-stubs/using.md"
},
"installing": {
"body": "bin/readme-stubs/installing.md"
}
}
}
}