Skip to content

Commit 78fd2f8

Browse files
authored
Merge pull request #6 from amirsadeghi1/patch-1
Laravel 10 support
2 parents 458165b + 5dfdf58 commit 78fd2f8

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest]
16-
php: [8.0, 8.1, 8.2]
17-
laravel: [9.*]
16+
php: [8.1, 8.2]
17+
laravel: [9.*, 10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
2123
testbench: 7.*
2224

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0|^8.1|^8.2",
19+
"php": "^8.1|^8.2",
2020
"guzzlehttp/guzzle": "^7.4",
21-
"illuminate/contracts": "^9.0",
21+
"illuminate/contracts": "^9.0|^10.0",
2222
"spatie/laravel-package-tools": "^1.9.2",
2323
"spatie/temporary-directory": "^2.1"
2424
},
2525
"require-dev": {
26-
"nesbot/carbon": "^2.63",
26+
"nesbot/carbon": "^2.66",
2727
"nunomaduro/collision": "^6.0",
28-
"orchestra/testbench": "^7.0",
28+
"orchestra/testbench": "^7.0|^8.0",
2929
"pestphp/pest": "^1.21",
3030
"pestphp/pest-plugin-laravel": "^1.1",
3131
"phpunit/phpunit": "^9.5"
@@ -54,4 +54,4 @@
5454
},
5555
"minimum-stability": "dev",
5656
"prefer-stable": true
57-
}
57+
}

0 commit comments

Comments
 (0)