forked from hechoendrupal/drupal-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.5 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
{
"name": "drupal/console",
"description": "Drupal Console",
"keywords": ["Drupal", "Console", "Development"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "David Flores",
"email": "[email protected]",
"homepage": "http://dmouse.net"
},
{
"name": "Jesus Manuel Olivas",
"email": "[email protected]",
"homepage": "http://jmolivas.com"
},
{
"name": "Drupal Console Contributors",
"homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
}
],
"require": {
"php": ">=5.4.5",
"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.18",
"herrera-io/phar-update": "1.*",
"symfony/dom-crawler": "2.7.*",
"alchemy/zippy": "0.2.*@dev",
"kriswallsmith/buzz": ">=0.15"
},
"bin": ["bin/console"],
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {"Drupal\\Console\\": "src"}
}
}