Skip to content

Commit 67e8242

Browse files
Dropped EOL versions
1 parent 0f38333 commit 67e8242

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
14+
php: ['7.4', '8.0', '8.1']
1515

1616
steps:
1717
- name: Checkout Code

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ Check out the [change log](CHANGELOG.md), [releases](https://github.com/GitLabPH
2323

2424
## Installation
2525

26-
This version supports [PHP](https://php.net) 7.2-8.1. To get started, simply require the project using [Composer](https://getcomposer.org). You will also need to install packages that "provide" [`psr/http-client-implementation`](https://packagist.org/providers/psr/http-client-implementation) and [`psr/http-factory-implementation`](https://packagist.org/providers/psr/http-factory-implementation).
26+
This version supports [PHP](https://php.net) 7.4-8.1. To get started, simply require the project using [Composer](https://getcomposer.org). You will also need to install packages that "provide" [`psr/http-client-implementation`](https://packagist.org/providers/psr/http-client-implementation) and [`psr/http-factory-implementation`](https://packagist.org/providers/psr/http-factory-implementation).
2727

2828
### Standard Installation
2929

3030
```bash
31-
$ composer require "m4tthumphrey/php-gitlab-api:^11.6" "guzzlehttp/guzzle:^7.4" "http-interop/http-factory-guzzle:^1.0"
31+
$ composer require "m4tthumphrey/php-gitlab-api:^11.7" "guzzlehttp/guzzle:^7.4" "http-interop/http-factory-guzzle:^1.2"
3232
```
3333

3434
### Framework Integration
3535

3636
#### Laravel:
3737

3838
```bash
39-
$ composer require "graham-campbell/gitlab:^5.6" "guzzlehttp/guzzle:^7.4" "http-interop/http-factory-guzzle:^1.0"
39+
$ composer require "graham-campbell/gitlab:^6.0"
4040
```
4141

4242
#### Symfony:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
],
2828
"require": {
29-
"php": "^7.2.5 || ^8.0",
29+
"php": "^7.4.15 || ^8.0.2",
3030
"ext-json": "*",
3131
"ext-xml": "*",
3232
"php-http/cache-plugin": "^1.7.5",
@@ -38,7 +38,7 @@
3838
"psr/http-client-implementation": "^1.0",
3939
"psr/http-factory-implementation": "^1.0",
4040
"psr/http-message": "^1.0",
41-
"symfony/options-resolver": "^3.4 || ^4.0 || ^5.0 || ^6.0",
41+
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0",
4242
"symfony/polyfill-php80": "^1.17"
4343
},
4444
"require-dev": {

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class Client
8686
*
8787
* @var string
8888
*/
89-
private const USER_AGENT = 'gitlab-php-api-client/11.6';
89+
private const USER_AGENT = 'gitlab-php-api-client/11.7';
9090

9191
/**
9292
* The HTTP client builder.

vendor-bin/phpunit/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"php": "^7.2.5 || ^8.0.2",
3+
"php": "^7.4.15 || ^8.0.2",
44
"phpunit/phpunit": "^8.5.23 || ^9.5.12"
55
},
66
"config": {

0 commit comments

Comments
 (0)