forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 702 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 702 Bytes
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-cli/wp-cli",
"description": "A command line interface for WordPress",
"keywords": [ "cli", "wordpress" ],
"homepage": "http://wp-cli.org",
"license": "MIT",
"bin": [
"bin/wp.bat", "bin/wp"
],
"require": {
"php": ">=5.3.2",
"wp-cli/php-cli-tools": "0.9.4-patch46",
"mustache/mustache": "~2.4",
"rhumsaa/array_column": "~1.1",
"rmccue/requests": "~1.6",
"symfony/finder": "~2.3",
"nb/oxymel": "0.1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"behat/behat": "2.5.*"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"autoload": {
"psr-0": { "WP_CLI": "php" },
"files": [ "php/Spyc.php" ],
"classmap": [ "php/export" ]
}
}