Skip to content

Commit f4cd28a

Browse files
committed
Update to Gitlab API 10
1 parent 0ba6d2f commit f4cd28a

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ branches:
1111

1212
matrix:
1313
include:
14-
- php: 7.4
15-
env: SYMFONY_VERSION='3.4.*'
16-
- php: 7.4
17-
env: SYMFONY_VERSION='4.3.*'
1814
- php: 7.4
1915
env: SYMFONY_VERSION='4.4.*'
2016
- php: 7.4

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getConfigTreeBuilder()
5252
->end()
5353
->enumNode('auth_method')
5454
->defaultValue(Client::AUTH_HTTP_TOKEN)
55-
->values(array(Client::AUTH_URL_TOKEN, Client::AUTH_HTTP_TOKEN, Client::AUTH_OAUTH_TOKEN))
55+
->values(array(Client::AUTH_HTTP_TOKEN, Client::AUTH_OAUTH_TOKEN))
5656
->end()
5757
->scalarNode('sudo')->defaultValue(null)->end()
5858
->scalarNode('alias')->defaultValue(null)->end()

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
],
1414
"require": {
1515
"php": "^7.2",
16-
"symfony/framework-bundle": "^3.4|^4.3|^5.0",
17-
"m4tthumphrey/php-gitlab-api": "^9.18"
16+
"symfony/framework-bundle": "^4.4|^5.0",
17+
"symfony/http-client": "^4.4|^5.0",
18+
"nyholm/psr7": "^1.3",
19+
"m4tthumphrey/php-gitlab-api": "^10.0"
1820
},
1921
"require-dev" : {
2022
"php-http/message": "^1.6",
21-
"php-http/guzzle6-adapter": "^1.1|^2.0.1",
2223
"phpunit/phpunit": "^8.0"
2324
},
2425
"autoload": {

0 commit comments

Comments
 (0)