Skip to content

Commit bbcde2e

Browse files
authored
Add support to Laravel 10 (#30)
1 parent 5394d64 commit bbcde2e

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,16 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php: [8.2, 8.1, 8.0]
16-
laravel: [9.*]
16+
laravel: [10.*, 9.*]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
1919
- laravel: 9.*
2020
testbench: 7.*
21+
- laravel: 10.*
22+
testbench: 8.*
23+
exclude:
24+
- laravel: 10.*
25+
php: 8.0
2126

2227
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2328

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"license": "MIT",
2020
"require": {
2121
"php" : "^8.0",
22-
"illuminate/config": "^9.0",
23-
"illuminate/console": "^9.0",
24-
"illuminate/log": "^9.0",
25-
"illuminate/support": "^9.0",
26-
"monolog/monolog": "^2.0",
22+
"illuminate/config": "^9.0|^10.0",
23+
"illuminate/console": "^9.0|^10.0",
24+
"illuminate/log": "^9.0|^10.0",
25+
"illuminate/support": "^9.0|^10.0",
26+
"monolog/monolog": "^2.0|^3.0",
2727
"cesargb/php-log-rotation": "^2.7"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^7.0",
30+
"orchestra/testbench": "^7.0|^8.0",
3131
"phpunit/phpunit": "^9.5",
3232
"friendsofphp/php-cs-fixer": "^3.13",
3333
"nunomaduro/larastan": "^2.3"

0 commit comments

Comments
 (0)