forked from hechoendrupal/drupal-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.52 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.52 KB
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
{
"name": "drupal/console",
"description": "Drupal Console",
"keywords": ["Drupal", "Console", "Development"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "David Flores",
"email": "dmousex@gmail.com",
"homepage": "http://dmouse.net"
},
{
"name": "Jesus Manuel Olivas",
"email": "jesus.olivas@gmail.com",
"homepage": "http://jmolivas.com"
},
{
"name": "Drupal Console Contributors",
"homepage": "https://github.com/hechoendrupal/DrupalAppConsole/graphs/contributors"
}
],
"require": {
"php": ">=5.4.5",
"composer/installers": "~1.0",
"symfony/config": "2.6.*",
"symfony/console": "2.6.*",
"symfony/dependency-injection": "2.6.*",
"symfony/debug": "2.6.*",
"symfony/event-dispatcher": "2.6.*",
"symfony/finder": "2.6.*",
"symfony/http-foundation": "2.6.*",
"symfony/translation": "2.6.*",
"symfony/yaml": "2.6.*",
"twig/twig": "1.16.*",
"herrera-io/phar-update": "1.*",
"symfony/dom-crawler": "2.6.*"
},
"require-dev": {
"drupal/coder": "~8.1",
"drupal/core": "8.0.0-beta9",
"phpunit/phpunit": "4.4.*"
},
"minimum-stability": "dev",
"bin": ["bin/console"],
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {"Drupal\\AppConsole\\": "src"}
}
}