-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
composer.json
54 lines (54 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
{
"name": "graham-campbell/github",
"description": "GitHub Is A GitHub Bridge For Laravel",
"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": "hello@gjcampbell.co.uk",
"homepage": "https://github.com/GrahamCampbell"
}
],
"require": {
"php": "^7.4.15 || ^8.0.2",
"graham-campbell/bounded-cache": "^1.2 || ^2.2",
"graham-campbell/manager": "^5.1",
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/psr7": "^2.6.2",
"illuminate/contracts": "^8.75 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^8.75 || ^9.0 || ^10.0 || ^11.0",
"knplabs/github-api": "3.14.*",
"lcobucci/jwt": "^4.3 || ^5.2",
"symfony/cache": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"graham-campbell/analyzer": "^4.1",
"graham-campbell/testbench": "^6.1",
"mockery/mockery": "^1.6.6",
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
},
"autoload": {
"psr-4": {
"GrahamCampbell\\GitHub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\GitHub\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"GrahamCampbell\\GitHub\\GitHubServiceProvider"
]
}
}
}