Skip to content

Commit 71b4138

Browse files
authored
Merge pull request #22 from abordage/laravel-11
Laravel 11 support
2 parents 84ec3b3 + e41c8f7 commit 71b4138

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

.github/workflows/tests.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,36 @@ jobs:
1111
matrix:
1212
stability: [ prefer-stable ]
1313
os: [ ubuntu-latest ]
14-
php: [7.4, 8.0, 8.1, 8.2]
15-
laravel: [8.*, 9.*, 10.*]
14+
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
15+
laravel: [ 8.*, 9.*, 10.*, 11.* ]
1616
include:
1717
- laravel: 8.*
1818
testbench: ^6.0
1919
- laravel: 9.*
2020
testbench: ^7.0
2121
- laravel: 10.*
2222
testbench: ^8.0
23+
- laravel: 11.*
24+
testbench: ^9.0
2325
exclude:
2426
- php: 7.4
2527
laravel: 9.*
2628
- php: 7.4
2729
laravel: 10.*
30+
- php: 7.4
31+
laravel: 11.*
2832
- php: 8.0
2933
laravel: 10.*
34+
- php: 8.0
35+
laravel: 11.*
36+
- php: 8.1
37+
laravel: 11.*
3038
- php: 8.2
3139
laravel: 8.*
40+
- php: 8.3
41+
laravel: 8.*
42+
- php: 8.3
43+
laravel: 9.*
3244

3345
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
3446

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ messengers. [Learn more](https://ogp.me) about Open Graph.
4848

4949
## Requirements
5050

51-
- PHP 7.4 - 8.2
52-
- Laravel 8.x - 10.x
51+
- PHP 7.4 - 8.3
52+
- Laravel 8.x - 11.x
5353
- The Imagick PHP extension
5454

5555
## Installation

composer.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,16 @@
2121
"require": {
2222
"php": ">=7.4",
2323
"ext-imagick": "*",
24-
"abordage/og-images": "^0.4.0",
25-
"illuminate/support": "^8.0 || ^9.0 || ^10.0"
24+
"abordage/og-images": "^0.4.1",
25+
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
2626
},
2727
"require-dev": {
2828
"ext-fileinfo": "*",
2929
"friendsofphp/php-cs-fixer": "^3.0",
3030
"mikey179/vfsstream": "^1.6",
31-
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0",
31+
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
3232
"nunomaduro/larastan": "^1.0 || ^2.0",
33-
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
34-
"phpstan/phpstan": "^1.0",
33+
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
3534
"phpunit/phpunit": "^9.6 || ^10.0"
3635
},
3736
"minimum-stability": "stable",

0 commit comments

Comments
 (0)