Skip to content

Commit 521cd40

Browse files
authored
Merge pull request #302 from spatie/l13-support
Add Laravel 13 and PHP 8.5 support
2 parents 7ca3c34 + 7b7e710 commit 521cd40

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ jobs:
66
test:
77
runs-on: ${{ matrix.os }}
88
strategy:
9-
fail-fast: true
9+
fail-fast: false
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
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",
32-
"illuminate/contracts": "^12.0",
33-
"illuminate/database": "^12.0",
34-
"illuminate/support": "^12.0",
32+
"illuminate/contracts": "^12.0|^13.0",
33+
"illuminate/database": "^12.0|^13.0",
34+
"illuminate/support": "^12.0|^13.0",
3535
"spatie/laravel-package-tools": "^1.9",
3636
"spatie/php-structure-discoverer": "^2.2"
3737
},

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)