-
-
Notifications
You must be signed in to change notification settings - Fork 559
/
composer.json
79 lines (79 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "drupal/console",
"description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
"keywords": [
"Drupal",
"Console",
"Development",
"Symfony"
],
"homepage": "http://drupalconsole.com/",
"type": "library",
"license": "GPL-2.0-or-later",
"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/drupal-console/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/hechoendrupal/drupal-console/issues",
"forum": "https://gitter.im/hechoendrupal/DrupalConsole",
"docs": "https://docs.drupalconsole.com/"
},
"require": {
"php": ">=7.0.8",
"alchemy/zippy": "~0.4",
"composer/installers": "^1.2",
"doctrine/annotations": "^1.2",
"doctrine/collections": "^1.3",
"drupal/console-core": "^2.0",
"drupal/console-extend-plugin": "^2.0",
"psy/psysh": "0.6.* || ~0.8",
"symfony/expression-language": "^5.4|^6.0",
"symfony/css-selector": "^5.4|^6.0",
"symfony/dom-crawler": "^5.4|^6.0",
"symfony/http-foundation": "^5.4|^6.0"
},
"suggest": {
"symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
"vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
},
"bin": [
"bin/drupal"
],
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/console-extend-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Drupal\\Console\\": "src"
}
}
}