-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "terra/cli",
"description": "Terra Command Line Interface",
"type": "project",
"license": "GPL-2.0",
"require": {
"php": ">=5.5.9",
"symfony/config": "~2.6",
"symfony/console": "~2.6",
"symfony/filesystem": "~2.6",
"symfony/process": "~2.6",
"symfony/yaml": "~2.6",
"cpliakas/git-wrapper": "~1.4",
"teqneers/php-stream-wrapper-for-git": "~1.0",
"videlalvaro/php-amqplib": "2.2.*",
"guzzlehttp/guzzle": "~6.0"
},
"authors": [
{
"name": "Jon Pugh",
"email": "[email protected]"
},
{
"name": "Terra Contributors",
"homepage": "https://github.com/terra-ops/terra-cli/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/terra-ops/terra-cli/issues",
"docs": "http://terra.readthedocs.org",
"forum": "https://gitter.im/terra-ops/terra-cli"
},
"autoload": {
"psr-4": { "terra\\": "src/terra/" }
},
"bin": [
"bin/terra"
]
}