Skip to content

Commit 886388b

Browse files
committed
Laravel 10.x Support
1 parent f00cb28 commit 886388b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.gitattributes

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/phpunit.xml.dist export-ignore
99
/tests export-ignore
1010
/.editorconfig export-ignore
11-
/.php.cs export-ignore
11+
/.php_cs.dist.php export-ignore
1212
/.github export-ignore
13-
13+
/phpstan.neon.dist export-ignore
14+
/phpstan-baseline.neon export-ignore

.github/workflows/run-tests.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
os: [ ubuntu-latest ]
2020
php: [ 8.2, 8.1, 8.0]
21-
laravel: [ 9.*, 8.* ]
21+
laravel: [ 10.*, 9.*, 8.* ]
2222
dependency-version: [ prefer-stable ]
2323
include:
2424
- laravel: 8.*
@@ -27,6 +27,12 @@ jobs:
2727
- laravel: 9.*
2828
testbench: 7.*
2929
larastan: ^1.0
30+
- laravel: 10.*
31+
testbench: 8.*
32+
larastan: ^2.0
33+
exclude:
34+
- laravel: 10.*
35+
php: 8.0
3036

3137
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3238

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require" : {
1919
"php" : "^7.4|^8.0",
2020
"ext-json" : "*",
21-
"illuminate/database" : "^8.73|^9.0",
21+
"illuminate/database" : "^8.73|^9.0|^10.0",
2222
"doctrine/dbal" : "^2.13|^3.2",
2323
"phpdocumentor/type-resolver" : "^1.5",
2424
"spatie/temporary-directory" : "^1.3|^2.0"
@@ -27,7 +27,7 @@
2727
"ext-redis": "*",
2828
"mockery/mockery": "^1.4",
2929
"nunomaduro/larastan": "^2.0",
30-
"orchestra/testbench": "^6.23|^7.0",
30+
"orchestra/testbench": "^6.23|^7.0|^8.0",
3131
"pestphp/pest": "^1.21",
3232
"pestphp/pest-plugin-laravel": "^1.2",
3333
"phpstan/extension-installer": "^1.1",

0 commit comments

Comments
 (0)