-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
36 lines (36 loc) · 1.06 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
{
"name": "zeichen32/gitlabapibundle",
"description": "Symfony Bundle to include the gitlab api.",
"type": "symfony-bundle",
"keywords": ["gitlab", "api"],
"homepage": "https://github.com/Zeichen32/GitLabApiBundle",
"license": "MIT",
"authors": [
{
"name": "Jens Averkamp",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2||^8.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-client-contracts": "^1.0|^2.0|^3.0",
"nyholm/psr7": "^1.0",
"m4tthumphrey/php-gitlab-api": "^11.0"
},
"require-dev" : {
"phpunit/phpunit": "^8.0",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-0": { "Zeichen32\\GitLabApiBundle": "" }
},
"target-dir": "Zeichen32/GitLabApiBundle",
"extra": {
"branch-alias": {
"dev-master": "6.1.x-dev"
}
}
}