forked from weknowinc/wp-console
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.25 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
{
"name": "wp/console",
"description": "A Wordpress CLI. A tool to generate boilerplate code, interact with and debug Wordpress.",
"keywords": ["Wordpress", "Console", "Development", "Symfony"],
"homepage": "http://wp-console.org/",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jesus Manuel Olivas",
"email": "[email protected]",
"homepage": "http://jmolivas.com"
},
{
"name": "Eduardo Garcia",
"email": "[email protected]",
"homepage": "http://enzolutions.com/"
},
{
"name": "Wordpress Console Contributors",
"homepage": "https://github.com/weknowinc/wp-Console/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/weknowinc/wp-console/issues",
"forum": "https://gitter.im/weknowinc/wp-console",
"docs": "https://docs.wp-console.org/"
},
"require": {
"php": "^5.5.9 || ^7.0",
"stecman/symfony-console-completion": "~0.7",
"symfony/console": "~2.8|~3.0",
"symfony/debug": "~2.8|~3.0",
"symfony/dependency-injection": "~2.8|~3.0",
"symfony/config": "~2.8|~3.0",
"symfony/yaml": "~2.8|~3.0",
"symfony/event-dispatcher": "~2.8|~3.0",
"symfony/translation": "~2.8|~3.0",
"symfony/finder": "~2.8|~3.0",
"symfony/process": "~2.8|~3.0",
"symfony/filesystem": "~2.8|~3.0",
"dflydev/dot-access-configuration": "^1.0",
"guzzlehttp/guzzle": "~6.1",
"phpseclib/phpseclib": "^2.0",
"anolilab/wordpress-salt-generator": "^1.2",
"twig/twig": "^1.31",
"doctrine/annotations": "^1.4",
"fzaninotto/faker": "^1.6",
"webmozart/path-util": "^2.3"
},
"bin": ["bin/wp-console"],
"config": {
"bin-dir": "bin/",
"generate-salts": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/Core/functions.php"
],
"psr-4": {"WP\\Console\\": "src"}
},
"scripts": {
"post-root-package-install": ["Anolilab\\Wordpress\\SaltGenerator\\Generator::addSalts"]
}
}