Skip to content

Commit 2a35946

Browse files
committed
Removed old laravel versions and added laravel 13 support
1 parent 28c4eb8 commit 2a35946

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: [8.2, 8.3, 8.4]
14-
laravel: [10.*, 11.*, 12.*]
13+
php: [8.2, 8.3, 8.4, 8.5]
14+
laravel: [12.*, 13.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
16+
exclude:
17+
- php: 8.2
18+
laravel: 13.*
1619
include:
17-
- laravel: 10.*
18-
testbench: 8.*
19-
- laravel: 11.*
20-
testbench: 9.*
2120
- laravel: 12.*
2221
testbench: 10.*
22+
- laravel: 13.*
23+
testbench: 11.*
2324

2425
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2526

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
],
1212
"require": {
1313
"php": "^8.2",
14-
"illuminate/support": "^10.0|^11.0|^12.0"
14+
"illuminate/support": "^12.0|^13.0"
1515
},
1616
"require-dev": {
17-
"orchestra/testbench": "^8.0|^9.0|^10.0",
18-
"pestphp/pest": "^2.0|^3.0",
19-
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
17+
"orchestra/testbench": "^10.0|^10.0",
18+
"pestphp/pest": "^3.0|^4.0",
19+
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
2020
"laravel/pint": "^1.19"
2121
},
2222
"autoload": {
@@ -46,4 +46,4 @@
4646
"pestphp/pest-plugin": true
4747
}
4848
}
49-
}
49+
}

0 commit comments

Comments
 (0)