forked from hechoendrupal/drupal-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.27 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
{
"name": "drupal/console",
"description": "The Drupal Console is a CLI tool to generate boilerplate code, interact and debug Drupal 8.",
"keywords": ["Drupal", "Console", "Development", "Symfony"],
"homepage": "http://drupalconsole.com/",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "David Flores",
"email": "[email protected]",
"homepage": "http://dmouse.net"
},
{
"name": "Jesus Manuel Olivas",
"email": "[email protected]",
"homepage": "http://jmolivas.com"
},
{
"name": "Eduardo Garcia",
"email": "[email protected]",
"homepage": "http://enzolutions.com/"
},
{
"name": "Omar Aguirre",
"email": "[email protected]"
},
{
"name": "Drupal Console Contributors",
"homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
"forum": "https://gitter.im/hechoendrupal/DrupalConsole",
"docs": "https://hechoendrupal.gitbooks.io/drupal-console/"
},
"require": {
"php": ">=5.5.9",
"composer/installers": "~1.0",
"symfony/config": "2.7.*",
"symfony/console": "2.7.*",
"symfony/css-selector": "2.7.*",
"symfony/dependency-injection": "2.7.*",
"symfony/debug": "2.7.*",
"symfony/event-dispatcher": "2.7.*",
"symfony/filesystem": "2.7.*",
"symfony/finder": "2.7.*",
"symfony/http-foundation": "2.7.*",
"symfony/translation": "2.7.*",
"symfony/yaml": "2.7.*",
"twig/twig": "^1.23.1",
"symfony/dom-crawler": "2.7.*",
"alchemy/zippy": "0.2.*@dev",
"phpseclib/phpseclib": "2.*",
"stecman/symfony-console-completion": "^0.5.1",
"guzzlehttp/guzzle": "~6.1",
"padraic/phar-updater": "~1.0@dev",
"gabordemooij/redbean": "dev-master"
},
"bin": ["bin/drupal"],
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {"Drupal\\Console\\": "src"}
}
}