forked from dmouse/drupal-console-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.56 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
{
"name": "drupal/console-launcher",
"description": "Drupal Console launcher",
"keywords": ["Drupal", "Console", "Development", "Symfony"],
"homepage": "http://drupalconsole.com/",
"type": "project",
"license": "GPL-2.0+",
"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": "Eduardo Garcia",
"email": "enzo@enzolutions.com",
"homepage": "http://enzolutions.com/"
},
{
"name": "Omar Aguirre",
"email": "omersguchigu@gmail.com"
},
{
"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": "http://docs.drupalconsole.com/"
},
"require": {
"php": "^5.5.9 || ^7.0",
"drupal/console-core" : "~1.0",
"padraic/phar-updater": "~1.0@dev"
},
"bin": ["bin/drupal"],
"config": {
"bin-dir": "bin/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"Drupal\\Console\\": "src"}
}
}