Skip to content

Commit a4915d3

Browse files
authored
Merge pull request #81 from danharrin/laravel-10
Laravel 10
2 parents 759694e + 9979951 commit a4915d3

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,19 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: ['8.0', '8.1']
14-
laravel: [8.*, 9.*]
13+
php: ['8.0', '8.1', '8.2']
14+
laravel: [8.*, 9.*, 10.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 8.*
1818
testbench: ^6.6
1919
- laravel: 9.*
2020
testbench: 7.*
21+
- laravel: 10.*
22+
testbench: 8.*
23+
exclude:
24+
- laravel: 10.*
25+
php: 8.0
2126

2227
steps:
2328
- name: Checkout code

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
],
2020
"require":{
2121
"php": "^8.0",
22-
"illuminate/contracts": "^8.67|^9.0",
23-
"illuminate/support": "^8.67|^9.0",
24-
"illuminate/validation": "^8.67|^9.0",
25-
"illuminate/view": "^8.67|^9.0",
22+
"illuminate/contracts": "^8.67|^9.0|^10.0",
23+
"illuminate/support": "^8.67|^9.0|^10.0",
24+
"illuminate/validation": "^8.67|^9.0|^10.0",
25+
"illuminate/view": "^8.67|^9.0|^10.0",
2626
"vlucas/phpdotenv": "^5.4.1"
2727
},
2828
"require-dev":{
2929
"phpunit/phpunit":"^9.5",
30-
"orchestra/testbench": "^6.23|^7.4",
30+
"orchestra/testbench": "^6.23|^7.4|^8.0",
3131
"vimeo/psalm": "^4.23"
3232
},
3333
"autoload":{
@@ -54,6 +54,7 @@
5454
"test": "vendor/bin/phpunit",
5555
"psalm": "vendor/bin/psalm"
5656
},
57+
"minimum-stability": "dev",
5758
"config": {
5859
"allow-plugins": {
5960
"composer/package-versions-deprecated": true

0 commit comments

Comments
 (0)