-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
53 lines (53 loc) · 1.65 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
{
"name": "graham-campbell/gitlab",
"description": "GitLab Is A GitLab Bridge For Laravel",
"keywords": ["laravel", "framework", "gitlab", "php-gitlab-api", "PHP GitLab API", "gitlab bridge", "bridge", "GitLab", "Laravel GitLab", "Laravel-GitLab", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]",
"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",
"m4tthumphrey/php-gitlab-api": "11.13.*",
"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\\GitLab\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\GitLab\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"GrahamCampbell\\GitLab\\GitLabServiceProvider"
]
}
}
}