-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
67 lines (67 loc) · 1.54 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
{
"name": "nbcuots/flo",
"description": "CLI app for GitHub projects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eric J. Duran",
"email": "[email protected]",
"role": "Project Lead"
},
{
"name": "Conor McNamara",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alex Ross",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Rachel Fairbanks",
"email": "[email protected]",
"role": "Business Analyst"
}
],
"support": {
"issues": "https://github.com/NBCUOTS/flo/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ericduran/php-github-api"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "4.*",
"herrera-io/phar-update": "~2.0",
"symfony/config": "2.6.4",
"symfony/console": "2.6.4",
"symfony/filesystem": "2.6.4",
"symfony/finder": "2.6.4",
"symfony/form": "2.6.4",
"symfony/process": "2.6.4",
"symfony/yaml": "2.6.4",
"teqneers/php-stream-wrapper-for-git": "dev-master",
"knplabs/github-api": "dev-flo-branch-updates",
"vierbergenlars/php-semver": "3.0.0",
"acquia/acquia-sdk-php-cloud-api": "*"
},
"require-dev": {
"phpunit/phpunit": "4.3.5",
"mikey179/vfsStream": "1.4.0"
},
"autoload": {
"psr-0": { "flo": "src/" }
},
"autoload-dev": {
"psr-0": { "flo\\Test": "tests/" }
},
"bin": ["bin/flo"],
"scripts": {
"test": "phpunit"
}
}