forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wp-cli/composer-changelogs"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"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",
"composer/composer": "^1.2.0",
"wp-cli/cron-command": "^1.0",
"wp-cli/import-command": "^1.0",
"wp-cli/db-command": "^1.0",
"wp-cli/media-command": "^1.0",
"wp-cli/export-command": "^1.0",
"wp-cli/package-command": "^1.0",
"wp-cli/search-replace-command": "^1.0",
"wp-cli/server-command": "^1.0",
"wp-cli/shell-command": "^1.0",
"wp-cli/eval-command": "^1.0",
"wp-cli/entity-command": "^1.0",
"wp-cli/extension-command": "^1.0",
"wp-cli/config-command": "^1.0",
"wp-cli/rewrite-command": "^1.0",
"wp-cli/super-admin-command": "^1.0",
"wp-cli/scaffold-command": "^1.0",
"wp-cli/widget-command": "^1.0",
"wp-cli/role-command": "^1.0",
"wp-cli/cache-command": "^1.0",
"wp-cli/checksum-command": "^1.0",
"wp-cli/language-command": "^1.0",
"wp-cli/core-command": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"behat/behat": "2.5.*",
"pyrech/composer-changelogs": "dev-php53 as 1.5.1",
"roave/security-advisories": "dev-master"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"autoload": {
"psr-0": { "WP_CLI": "php" }
}
}