forked from opendevshop/devshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 867 Bytes
/
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
{
"name": "devshop/cli",
"description": "Command Line interface for DevShop",
"require": {
"symfony/console": "^2.7",
"symfony/process": "^2.7",
"knplabs/github-api": "^1.4",
"symfony/filesystem": "^2.7",
"cpliakas/git-wrapper": "1.*",
"asm/php-ansible": "v1.2.0",
"consolidation/robo": "^1",
"drush/drush": "~8.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opendevshop/php-ansible"
}
],
"authors": [
{
"name": "Jon Pugh",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "DevShop": "src/" }
},
"bin": [
"devshop"
],
"config": {
"platform": {
"php": "5.5.38"
},
"bin-dir": "bin"
}
}