Skip to content

Commit 7bfe18f

Browse files
authored
Merge pull request #22 from BinarCode/add-laravel13-php85
Add Laravel 13 and PHP 8.5 support, drop Laravel 11 and PHP 8.2
2 parents 71b7602 + f2d0701 commit 7bfe18f

3 files changed

Lines changed: 17 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.2, 8.3, 8.4]
13-
laravel: [11.*, 12.*]
12+
php: [8.4, 8.5]
13+
laravel: [12.*, 13.*]
1414
stability: [prefer-stable]
1515
include:
16-
- laravel: 11.*
17-
testbench: 9.*
1816
- laravel: 12.*
1917
testbench: 10.*
18+
- laravel: 13.*
19+
testbench: 11.*
2020

2121
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2222

CHANGELOG.md

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

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

5+
## 7.0.0 - 2026-03-30
6+
7+
### Added
8+
9+
- Support for Laravel 13 and PHP 8.5
10+
11+
### Removed
12+
13+
- Dropped Laravel 11, PHP 8.2 and PHP 8.3 support
14+
515
## 6.1.0 - 2025-03-12
616

717
### Added

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.2|^8.3|^8.4",
20-
"illuminate/contracts": "^11.0|^12.0",
19+
"php": "^8.4|^8.5",
20+
"illuminate/contracts": "^12.0|^13.0",
2121
"laravel/slack-notification-channel": "^3.2",
2222
"ext-json": "*"
2323
},
@@ -26,7 +26,7 @@
2626
"friendsofphp/php-cs-fixer": "^3.2",
2727
"laravel/sanctum": "^4.0|^5.0",
2828
"nunomaduro/collision": "^8.1",
29-
"orchestra/testbench": "^9.0|^10.0",
29+
"orchestra/testbench": "^10.0|^11.0",
3030
"phpunit/phpunit": "^10.0|^11.0|^12.0",
3131
"symfony/stopwatch": "^4.4|^5.0|^6.0|^7.0"
3232
},

0 commit comments

Comments
 (0)