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
45 lines (45 loc) · 1.29 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "drupal/console",
"description": "Drupal 8 Console scaffolding module generator",
"keywords": ["Drupal", "Console", "Development"],
"type": "drupal-module",
"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.2",
"symfony/console": "~2.4",
"symfony/finder": "~2.4",
"symfony/dependency-injection": "~2.4",
"twig/twig": "~1.15",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"drupal/drupal": "8.x-dev@dev",
"symfony/config": "~2.4",
"symfony/http-kernel": "~2.4"
},
"minimum-stability": "dev",
"bin": ["bin/console"],
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {"Drupal\\AppConsole\\": "src"}
}
}