forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
95 lines (95 loc) · 2.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "wp-cli/wp-cli",
"description": "The command line interface for WordPress",
"keywords": [ "cli", "wordpress" ],
"homepage": "https://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"
],
"config": {
"platform": {
"php": "5.3.29"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.29",
"composer/composer": "^1.2.0",
"composer/semver": "~1.0",
"justinrainbow/json-schema": "~5.2.5",
"mustache/mustache": "~2.4",
"ramsey/array_column": "~1.1",
"rmccue/requests": "~1.6",
"symfony/config": "^2.7|^3.0",
"symfony/console": "^2.7|^3.0",
"symfony/debug": "^2.7|^3.0",
"symfony/dependency-injection": "^2.7|^3.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"symfony/filesystem": "^2.7|^3.0",
"symfony/finder": "^2.7|^3.0",
"symfony/process": "^2.1|^3.0",
"symfony/translation": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0",
"wp-cli/autoload-splitter": "^0.1.5",
"wp-cli/cache-command": "^1.0",
"wp-cli/checksum-command": "^1.0",
"wp-cli/config-command": "^1.0",
"wp-cli/core-command": "^1.0",
"wp-cli/cron-command": "^1.0",
"wp-cli/db-command": "^1.0",
"wp-cli/entity-command": "^1.0",
"wp-cli/eval-command": "^1.0",
"wp-cli/export-command": "^1.0",
"wp-cli/extension-command": "^1.0",
"wp-cli/import-command": "^1.0",
"wp-cli/language-command": "^1.0",
"wp-cli/media-command": "^1.0",
"wp-cli/mustangostang-spyc": "^0.6.3",
"wp-cli/package-command": "^1.0",
"wp-cli/php-cli-tools": "~0.11.2",
"wp-cli/rewrite-command": "^1.0",
"wp-cli/role-command": "^1.0",
"wp-cli/scaffold-command": "^1.0",
"wp-cli/search-replace-command": "^1.0",
"wp-cli/server-command": "^1.0",
"wp-cli/shell-command": "^1.0",
"wp-cli/super-admin-command": "^1.0",
"wp-cli/widget-command": "^1.0"
},
"require-dev": {
"behat/behat": "2.5.*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpunit/phpunit": "3.7.*",
"roave/security-advisories": "dev-master",
"wimg/php-compatibility": "^8.0",
"wp-coding-standards/wpcs": "^0.13.1"
},
"suggest": {
"psy/psysh": "Enhanced `wp shell` functionality"
},
"autoload": {
"psr-0": { "WP_CLI": "php" },
"psr-4": { "": "php/commands/src" }
},
"scripts": {
"post-install-cmd": [
"cp -f ./utils/git-pre-commit-hook ./.git/hooks/pre-commit"
]
},
"extra": {
"autoload-splitter": {
"splitter-logic": "WP_CLI\\AutoloadSplitter",
"splitter-location": "php/WP_CLI/AutoloadSplitter.php",
"split-target-prefix-true": "autoload_commands",
"split-target-prefix-false": "autoload_framework"
}
}
}