-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
37 lines (37 loc) · 1.22 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
{
"name": "gushphp/gush",
"type": "library",
"description": "Project Maintenance & Contributing Automation Tool",
"keywords": ["workflow", "issue", "tracker", "adapter", "pull request"],
"license": "MIT",
"authors": [{ "name": "makers", "homepage": "https://github.com/gushphp/gush/graphs/contributors" }],
"require": {
"php": ">=7.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "~4.2.3",
"guzzlehttp/progress-subscriber": "~1.1.0",
"symfony/console": "~2.8.0",
"symfony/process": "~2.8.0",
"symfony/filesystem": "~2.8.0",
"symfony/finder": "~2.8.0",
"symfony/yaml": "~2.8.0",
"symfony/event-dispatcher": "~2.8.0",
"knplabs/github-api": "~1.3.1",
"ddd/slug": "~1.0.0",
"herrera-io/version": "~1.1.1",
"ramsey/array_column": "~1.1.3",
"gentle/bitbucket-api": "~0.5.2",
"m4tthumphrey/php-gitlab-api": "~7.14.0"
},
"require-dev": {
"mikey179/vfsStream": "~1.5.0",
"symfony/var-dumper": "~3.1.3",
"phpunit/phpunit": "~5.4.8"
},
"autoload": {
"psr-4": {"Gush\\": "src"}
},
"autoload-dev": {
"psr-4": {"Gush\\Tests\\": "tests"}
}
}