-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.45 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": "provision-ops/cli",
"description": "The Website Provisioning CLI",
"keywords": ["Hosting", "Drupal", "Aegir"],
"homepage": "https://github.com/provision4/provision",
"type": "library",
"license": "GPL-2.0+",
"require": {
"consolidation/robo": "dev-block-output",
"consolidation/annotated-command": "~2",
"drupal/console-core": "1.0.2",
"drush/drush": "8.x",
"psr/log": "^1.0",
"psy/psysh": "^0.8.11",
"symfony/console": "^3.2",
"symfony/yaml": "^3.2"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:provision4/Robo.git"
}
],
"bin": ["bin/provision"],
"authors": [
{
"name": "Provision Contributors",
"homepage": "https://github.com/provision4/provision/graphs/contributors"
},
{
"name": "Jon Pugh",
"email": "[email protected]",
"homepage": "http://thinkdrop.net"
}
],
"support": {
"issues": "https://github.com/provision4/provision/issues",
"docs": "https://aegir.gitbooks.io/provision/"
},
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"platform": {
"php": "5.5.9"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"Aegir\\Provision\\": "src/Provision"}
}
}