Skip to content

Commit 8367f1f

Browse files
authored
laravel 12 attempt #1
1 parent 8d6c165 commit 8367f1f

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,22 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [8.1, 8.2, 8.3]
13-
laravel: [10.*, 11.*]
12+
php: [8.1, 8.2, 8.3, 8.4]
13+
laravel: [10.*, 11.*, 12.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 12.*
17+
testbench: 10.*
1618
- laravel: 11.*
1719
testbench: 9.*
1820
- laravel: 10.*
1921
testbench: 8.*
2022
exclude:
2123
# excludes laravel 11 on php 8.1
2224
- php: 8.1
23-
laravel: 11.*
25+
laravel: [11.*, 12.*]
26+
- php: 8.2
27+
laravel: 12.*
2428

2529
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2630

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
],
2626
"require": {
2727
"php": "^8.0",
28-
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
28+
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
2929
"jaybizzle/crawler-detect": "^1.2",
3030
"spatie/laravel-referer": "^1.6",
3131
"torann/geoip": "^1.0|^3.0",
3232
"nesbot/carbon": "^2.0|^3.0"
3333
},
3434
"require-dev": {
35-
"doctrine/dbal": "^2.6|^3.0",
36-
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
35+
"doctrine/dbal": "^2.6 || ^3.0 || ^4.0",
36+
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
3737
"mockery/mockery": "^1.4 || ^1.6",
38-
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
38+
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
3939
"phpunit/phpunit": "^9.0 || ^10.1",
4040
"predis/predis": "^1.1|^2.0"
4141
},

0 commit comments

Comments
 (0)