Skip to content

Commit 3b89a91

Browse files
committed
feat: support laravel 12 (#146)
This closes #145 for v2.
1 parent 5f05ba2 commit 3b89a91

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,18 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: [8.2, 8.3, 8.4]
17-
laravel: [11.*]
16+
php: [8.1, 8.2, 8.3, 8.4]
17+
laravel: [10.*, 11.*, 12.*]
1818
include:
1919
- laravel: 11.*
2020
testbench: 9.*
21+
- laravel: 12.*
22+
testbench: 10.*
23+
exclude:
24+
- laravel: 11.*
25+
php: 8.1
26+
- laravel: 12.*
27+
php: 8.1
2128

2229
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }}
2330

composer.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,15 @@
2323
"require": {
2424
"php": "^8.2",
2525
"ext-json": "*",
26-
"illuminate/support": "^11.0|^12.0",
27-
"cloudinary/cloudinary_php": "^3.0",
28-
"league/flysystem": "^3.29"
26+
"illuminate/support": "^10.0|^11.0|^12.0",
27+
"cloudinary/cloudinary_php": "^2.0"
2928
},
3029
"require-dev": {
31-
"mockery/mockery": "^1.6",
32-
"orchestra/testbench": "^9.9",
33-
"pestphp/pest": "^2.36",
34-
"sempro/phpunit-pretty-print": "^1.2",
35-
"laravel/pint": "^1.20",
36-
"phpspec/prophecy-phpunit": "^2.3"
30+
"mockery/mockery": "^1.1",
31+
"orchestra/testbench": "^8.0|^9.0|^10.0",
32+
"pestphp/pest": "^2.35|^3.0",
33+
"sempro/phpunit-pretty-print": "^1.0",
34+
"laravel/pint": "^1.20"
3735
},
3836
"autoload": {
3937
"psr-4": {

0 commit comments

Comments
 (0)