forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.22 KB
/
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
40
41
42
43
44
45
46
47
48
{
"name": "wp-cli/wp-cli",
"description": "A command line interface for WordPress",
"keywords": [ "cli", "wordpress" ],
"homepage": "http://wp-cli.org",
"license": "MIT",
"support": {
"issues": "https://github.com/wp-cli/wp-cli/issues",
"source": "https://github.com/wp-cli/wp-cli",
"docs": "https://make.wordpress.org/cli/handbook/"
},
"bin": [
"bin/wp.bat", "bin/wp"
],
"require": {
"php": ">=5.3.29",
"wp-cli/php-cli-tools": "~0.11.2",
"mustache/mustache": "~2.4",
"mustangostang/spyc": "~0.5",
"composer/semver": "~1.0",
"ramsey/array_column": "~1.1",
"rmccue/requests" : "~1.6",
"symfony/finder": "~2.7",
"symfony/yaml": "~2.7",
"symfony/filesystem": "~2.7",
"symfony/config": "~2.7",
"symfony/console": "~2.7",
"symfony/debug": "~2.7",
"symfony/dependency-injection": "~2.7",
"symfony/event-dispatcher": "~2.7",
"symfony/process": "~2.1",
"symfony/translation": "~2.7",
"nb/oxymel": "~0.1.0",
"composer/composer": "^1.2.0",
"wp-cli/cron-command": "^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" },
"classmap": [ "php/export" ]
}
}