forked from GrahamCampbell/Laravel-GitHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.68 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
{
"name": "graham-campbell/github",
"description": "GitHub Is A GitHub Bridge For Laravel 5",
"keywords": ["laravel", "framework", "github", "php-github-api", "PHP GitHub API", "github bridge", "bridge", "GitHub", "Laravel GitHub", "Laravel-GitHub", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "graham@alt-three.com"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"graham-campbell/manager": "^3.0",
"knplabs/github-api": "2.5.*"
},
"require-dev": {
"graham-campbell/analyzer": "^1.1",
"graham-campbell/testbench": "^4.0",
"madewithlove/illuminate-psr-cache-bridge": "^1.0",
"mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583",
"phpunit/phpunit": "^6.0",
"php-http/guzzle6-adapter": "^1.0"
},
"suggest": {
"madewithlove/illuminate-psr-cache-bridge": "Allows caching GitHub HTTP requests"
},
"autoload": {
"psr-4": {
"GrahamCampbell\\GitHub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\GitHub\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
},
"laravel": {
"providers": [
"GrahamCampbell\\GitHub\\GitHubServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}