Skip to content

Commit d772743

Browse files
committed
Add Laravel 13 support
- Expand illuminate/* constraints to ^11.0 || ^12.0 || ^13.0 - Expand orchestra/testbench to ^9.0 || ^10.0 || ^11.0 - Add PHP 8.4 / Laravel 13 CI matrix entry - Update docs to mention Laravel 13 Verified locally against Laravel 13.4.0 with orchestra/testbench 11.1.0: 38/38 tests pass, phpstan level 9 clean.
1 parent 5e5c685 commit d772743

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- php: '8.4'
2525
laravel: '12.*'
2626
testbench: '10.*'
27+
- php: '8.4'
28+
laravel: '13.*'
29+
testbench: '11.*'
2730

2831
steps:
2932
- name: Checkout

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
"require": {
2222
"php": "^8.2",
2323
"php-collective/djot": "^0.1.24",
24-
"illuminate/contracts": "^11.0 || ^12.0",
25-
"illuminate/support": "^11.0 || ^12.0",
26-
"illuminate/view": "^11.0 || ^12.0"
24+
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
25+
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
26+
"illuminate/view": "^11.0 || ^12.0 || ^13.0"
2727
},
2828
"require-dev": {
29-
"orchestra/testbench": "^9.0 || ^10.0",
29+
"orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
3030
"php-collective/code-sniffer": "dev-master",
3131
"phpstan/phpstan": "^2.0",
3232
"phpunit/phpunit": "^11.5 || ^12.5 || ^13.0"

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ public function render(string $content): string
6262
## Requirements
6363

6464
- PHP 8.2 or higher
65-
- Laravel 11.x or 12.x
65+
- Laravel 11.x, 12.x or 13.x

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Requirements
44

55
- PHP 8.2 or higher
6-
- Laravel 11.x or 12.x
6+
- Laravel 11.x, 12.x or 13.x
77

88
## Install via Composer
99

0 commit comments

Comments
 (0)