Skip to content

Commit ea759a9

Browse files
committed
Support Laravel 12
1 parent 1edaebd commit ea759a9

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
16-
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*, 9.*, 10.*, 11.*]
16+
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*, 9.*, 10.*, 11.*, 12.*]
1717
version: [prefer-stable]
1818
os: [ubuntu-latest]
1919
include:
@@ -35,6 +35,8 @@ jobs:
3535
testbench: 8.*
3636
- laravel: 11.*
3737
testbench: 9.*
38+
- laravel: 12.*
39+
testbench: 10.*
3840
exclude:
3941
- laravel: 5.6.*
4042
php: 8.0
@@ -120,6 +122,18 @@ jobs:
120122
php: 8.0
121123
- laravel: 11.*
122124
php: 8.1
125+
- laravel: 12.*
126+
php: 7.1
127+
- laravel: 12.*
128+
php: 7.2
129+
- laravel: 12.*
130+
php: 7.3
131+
- laravel: 12.*
132+
php: 7.4
133+
- laravel: 12.*
134+
php: 8.0
135+
- laravel: 12.*
136+
php: 8.1
123137

124138
name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.version }} - ${{ matrix.os }}
125139

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `laravel-sitemappable` will be documented in this file
44

5+
## 1.9.0 - 2025-02-24
6+
- Support Laravel 12
7+
58
## 1.8.0 - 2024-11-25
69
- Support PHP 8.4
710

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"php": "^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
24-
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
23+
"orchestra/testbench": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
24+
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)