Skip to content

Commit 967185f

Browse files
Next version
1 parent d82f503 commit 967185f

File tree

5 files changed

+45
-25
lines changed

5 files changed

+45
-25
lines changed

.github/workflows/tests.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,20 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
15-
laravel: ['8', '9', '10']
15+
laravel: ['8', '9', '10', '11']
1616
exclude:
1717
- php: '7.4'
1818
laravel: '9'
1919
- php: '7.4'
2020
laravel: '10'
21+
- php: '7.4'
22+
laravel: '11'
2123
- php: '8.0'
2224
laravel: '10'
25+
- php: '8.0'
26+
laravel: '11'
27+
- php: '8.1'
28+
laravel: '11'
2329
- php: '8.2'
2430
laravel: '8'
2531
- php: '8.3'
@@ -44,31 +50,39 @@ jobs:
4450
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4551

4652
- name: Select Laravel 8
47-
uses: nick-invision/retry@v2
53+
uses: nick-invision/retry@v3
4854
with:
4955
timeout_minutes: 5
5056
max_attempts: 5
51-
command: composer require "laravel/framework:^8.83.27" "phpunit/phpunit:^9.6.15" --no-update --no-interaction
57+
command: composer require "laravel/framework:^8.83.27" "phpunit/phpunit:^9.6.17" --no-update --no-interaction
5258
if: "matrix.laravel == '8'"
5359

5460
- name: Select Laravel 9
55-
uses: nick-invision/retry@v2
61+
uses: nick-invision/retry@v3
5662
with:
5763
timeout_minutes: 5
5864
max_attempts: 5
59-
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.15" --no-update --no-interaction
65+
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.17" --no-update --no-interaction
6066
if: "matrix.laravel == '9'"
6167

6268
- name: Select Laravel 10
63-
uses: nick-invision/retry@v2
69+
uses: nick-invision/retry@v3
6470
with:
6571
timeout_minutes: 5
6672
max_attempts: 5
67-
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.4.2" --no-update --no-interaction
73+
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
6874
if: "matrix.laravel == '10'"
6975

76+
- name: Select Laravel 11
77+
uses: nick-invision/retry@v3
78+
with:
79+
timeout_minutes: 5
80+
max_attempts: 5
81+
command: composer require "laravel/framework:^11.0.7" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
82+
if: "matrix.laravel == '11'"
83+
7084
- name: Install PHP Dependencies
71-
uses: nick-invision/retry@v2
85+
uses: nick-invision/retry@v3
7286
with:
7387
timeout_minutes: 5
7488
max_attempts: 5

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ CHANGE LOG
22
==========
33

44

5+
## V7.5 (17/03/2024)
6+
7+
* Added Laravel 11 support
8+
* Require m4tthumphrey/php-gitlab-api 11.14
9+
10+
511
## V7.4 (04/12/2023)
612

713
* Added PHP 8.3 support

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018-2023 Graham Campbell <[email protected]>
3+
Copyright (c) 2018-2024 Graham Campbell <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ Laravel GitLab was created by, and is maintained by [Graham Campbell](https://gi
1616

1717
## Installation
1818

19-
This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel](https://laravel.com/) 8-10.
20-
21-
| GitLab | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 |
22-
|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23-
| 1.10 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: |
24-
| 2.7 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
25-
| 3.3 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
26-
| 4.4 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
27-
| 5.6 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
28-
| 6.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: |
29-
| 7.4 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
19+
This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel](https://laravel.com/) 8-11.
20+
21+
| GitLab | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 | L11 |
22+
|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23+
| 1.10 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
24+
| 2.7 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
25+
| 3.3 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
26+
| 4.4 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
27+
| 5.6 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
28+
| 6.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
29+
| 7.5 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
3030

3131
To get the latest version, simply require the project using [Composer](https://getcomposer.org/):
3232

3333
```bash
34-
$ composer require "graham-campbell/gitlab:^7.4"
34+
$ composer require "graham-campbell/gitlab:^7.5"
3535
```
3636

3737
Once installed, if you are not using automatic package discovery, then you need to register the `GrahamCampbell\GitLab\GitLabServiceProvider` service provider in your `config/app.php`.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
"graham-campbell/manager": "^5.1",
1717
"guzzlehttp/guzzle": "^7.8.1",
1818
"guzzlehttp/psr7": "^2.6.2",
19-
"illuminate/contracts": "^8.75 || ^9.0 || ^10.0",
20-
"illuminate/support": "^8.75 || ^9.0 || ^10.0",
19+
"illuminate/contracts": "^8.75 || ^9.0 || ^10.0 || ^11.0",
20+
"illuminate/support": "^8.75 || ^9.0 || ^10.0 || ^11.0",
2121
"m4tthumphrey/php-gitlab-api": "11.13.*",
22-
"symfony/cache": "^5.4 || ^6.0"
22+
"symfony/cache": "^5.4 || ^6.0 || ^7.0"
2323
},
2424
"require-dev": {
2525
"graham-campbell/analyzer": "^4.1",
2626
"graham-campbell/testbench": "^6.1",
2727
"mockery/mockery": "^1.6.6",
28-
"phpunit/phpunit": "^9.6.15 || ^10.4.2"
28+
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)