-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
composer.json
45 lines (45 loc) · 921 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
39
40
41
42
43
44
45
{
"name": "devshop/github-api-cli",
"type": "library",
"description": "Simple console wrapper for GitHub API",
"keywords": [],
"homepage": "https://getdevshop.com",
"license": "MIT",
"authors": [
{
"name": "Jon Pugh",
"email": "[email protected]"
},
{
"name": "DevShop Community",
"homepage": "https://github.com/opendevshop/devshop/graphs/contributors"
}
],
"repositories": [
{
"type": "path",
"url": "../GitTraits"
}
],
"require": {
"php": "^7.1||^8.0",
"consolidation/robo": "^2",
"knplabs/github-api": "^3.9||^1.0",
"devshop/git-traits": "@dev",
"guzzlehttp/guzzle": "^6",
"php-http/guzzle6-adapter": "2.x-dev"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"DevShop\\Component\\GitHubApiCli\\": ""
}
},
"bin": [
"github"
]
}