Skip to content

Commit 2cd473d

Browse files
Laravel 10.x Compatibility (#35)
Co-authored-by: Pascal Baljet <[email protected]>
1 parent 89f6d58 commit 2cd473d

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ 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
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 10.*
16+
testbench: 8.*
1517
- laravel: 9.*
1618
testbench: 7.*
1719

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.0 || ^8.1 || ^8.2",
20+
"php": "^8.1 || ^8.2",
2121
"ext-openssl": "*",
2222
"egulias/email-validator": "^2.1.10 || ^3.1",
2323
"guzzlehttp/guzzle": "^7.0.1",
24-
"illuminate/support": "^9.0",
25-
"illuminate/validation": "^9.0"
24+
"illuminate/support": "^9.0 || ^10.0",
25+
"illuminate/validation": "^9.0 || ^10.0"
2626
},
2727
"require-dev": {
28-
"nesbot/carbon": "^2.63",
29-
"orchestra/testbench": "^7.0",
30-
"phpunit/phpunit": "^9.4"
28+
"nesbot/carbon": "^2.66",
29+
"orchestra/testbench": "^7.0 || ^8.0",
30+
"phpunit/phpunit": "^9.5"
3131
},
3232
"autoload": {
3333
"psr-4": {
@@ -58,4 +58,4 @@
5858
}
5959
}
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)