-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
79 lines (79 loc) · 2.4 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-core",
"description": "Drupal Console Core",
"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/DrupalConsole/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/hechoendrupal/DrupalConsole/issues",
"forum": "https://gitter.im/hechoendrupal/DrupalConsole",
"docs": "http://docs.drupalconsole.com/"
},
"require": {
"php": ">=7.0.8",
"dflydev/dot-access-configuration": "^1.0.4",
"drupal/console-en": "1.9.7",
"stecman/symfony-console-completion": "~0.7",
"symfony/config": "~3.0|^4.4",
"symfony/console": "~3.0|^4.4",
"symfony/debug": "~3.0|^4.4",
"symfony/dependency-injection": "~3.0|^4.4",
"symfony/event-dispatcher": "~3.0|^4.4",
"symfony/filesystem": "^4.4.9 || ^5 || ^6",
"symfony/finder": "^4.4.9 || ^5 || ^6",
"symfony/process": "~3.0|^4.4",
"symfony/translation": "~3.0|^4.4",
"symfony/yaml": "~3.0|^4.4",
"twig/twig": "^2.15.3|^3.4.3",
"webflo/drupal-finder": "^1.0",
"webmozart/path-util": "^2.3",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Drupal\\Console\\Core\\": "src"
}
},
"repositories": {
"dot-access-configuration": {
"url": "https://github.com/LOBsTerr/dflydev-dot-access-configuration.git",
"type": "git"
}
}
}