Skip to content

Commit 0d36d0f

Browse files
freekmurzeclaude
andcommitted
Add Laravel 13 and PHP 8.5 support
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7ca3c34 commit 0d36d0f

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
1212
php: [8.5, 8.4]
13-
laravel: [12.*]
13+
laravel: [13.*, 12.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 13.*
17+
testbench: 11.*
1618
- laravel: 12.*
1719
testbench: 10.*
1820

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"php": "^8.4",
2020
"ext-json": "*",
2121
"facade/ignition-contracts": "^1.0.2|^2.0",
22-
"illuminate/contracts": "^12.0",
23-
"illuminate/database": "^12.0",
24-
"illuminate/support": "^12.0",
22+
"illuminate/contracts": "^12.0|^13.0",
23+
"illuminate/database": "^12.0|^13.0",
24+
"illuminate/support": "^12.0|^13.0",
2525
"spatie/laravel-package-tools": "^1.19",
2626
"spatie/php-structure-discoverer": "^2.3.1"
2727
},
2828
"require-dev": {
29-
"orchestra/testbench": "^10.0",
29+
"orchestra/testbench": "^10.0|^11.0",
3030
"pestphp/pest": "^4.1.4",
3131
"symfony/var-dumper": "^7.3.5|^8.0",
3232
"illuminate/contracts": "^12.0",

phpunit.xml.dist

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
<directory>tests</directory>
66
</testsuite>
77
</testsuites>
8-
<logging>
9-
<junit outputFile="build/report.junit.xml"/>
10-
</logging>
118
<source>
129
<include>
1310
<directory suffix=".php">src/</directory>

0 commit comments

Comments
 (0)