Skip to content

Commit 01cc897

Browse files
Laravel 10.x Compatibility (#9)
Co-authored-by: Pascal Baljet <[email protected]>
1 parent fd97ac3 commit 01cc897

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*]
11+
php: [8.2, 8.1]
12+
laravel: [10.*, 9.*]
1313
db: [mysql, postgres, sqlite]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0|^8.1|^8.2",
20-
"illuminate/support": "^9.0",
21-
"nesbot/carbon": "^2.63"
19+
"php": "^8.1|^8.2",
20+
"illuminate/support": "^9.0|^10.0",
21+
"nesbot/carbon": "^2.66"
2222
},
2323
"require-dev": {
24-
"mockery/mockery": "^1.3.3",
25-
"orchestra/testbench": "7.0",
26-
"phpunit/phpunit": "^9.4"
24+
"mockery/mockery": "^1.4.4",
25+
"orchestra/testbench": "^7.0|^8.0",
26+
"phpunit/phpunit": "^9.5"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -44,4 +44,4 @@
4444
},
4545
"minimum-stability": "dev",
4646
"prefer-stable": true
47-
}
47+
}

0 commit comments

Comments
 (0)