This repository was archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.42 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
56
{
"name": "vinkla/gitlab",
"description": "A GitLab bridge for Laravel",
"license": "MIT",
"keywords": ["laravel", "gitlab", "git", "api"],
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "5.5.*",
"illuminate/support": "5.5.*",
"graham-campbell/manager": "^3.0",
"m4tthumphrey/php-gitlab-api": "^9.0"
},
"require-dev": {
"graham-campbell/analyzer": "^1.1",
"graham-campbell/testbench": "^4.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.5",
"php-http/guzzle6-adapter": "^1.0",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Vinkla\\GitLab\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\GitLab\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
},
"laravel": {
"providers": [
"Vinkla\\GitLab\\GitLabServiceProvider"
],
"aliases": {
"GitLab": "Vinkla\\GitLab\\Facades\\GitLab"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}