Skip to content

Commit b931712

Browse files
authored
Merge pull request #22 from cesargb/l9
add support to L9
2 parents 5d14c55 + cd2e430 commit b931712

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [7.4, 8.0]
16-
laravel: [8.*, 6.*]
15+
php: [7.4, 8.0, 8.1]
16+
laravel: [9.*, 8.*, 6.*]
1717
dependency-version: [prefer-lowest, prefer-stable]
18+
exclude:
19+
- php: 8.1
20+
laravel: 6.*
21+
- php: 7.4
22+
laravel: 9.*
1823
include:
24+
- laravel: 9.*
25+
testbench: 7.*
1926
- laravel: 8.*
2027
testbench: 6.*
2128
- laravel: 6.*

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"license": "MIT",
2020
"require": {
2121
"php" : "^7.4 | ^8.0",
22-
"illuminate/config": "^6.20|^8.0",
23-
"illuminate/console": "^6.20|^8.0",
24-
"illuminate/log": "^6.20|^8.0",
25-
"illuminate/support": "^6.20|^8.0",
22+
"illuminate/config": "^6.20|^8.76|^9.0",
23+
"illuminate/console": "^6.20|^8.76|^9.0",
24+
"illuminate/log": "^6.20|^8.76|^9.0",
25+
"illuminate/support": "^6.20|^8.76|^9.0",
2626
"monolog/monolog": "^2.0",
2727
"cesargb/php-log-rotation": "^2.4"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^4.18|^6.20",
30+
"orchestra/testbench": "^4.18|^6.20|^7.0",
3131
"phpunit/phpunit": "^9.4"
3232
},
3333
"autoload": {
@@ -49,5 +49,7 @@
4949
"Cesargb\\LaravelLog\\RotateServiceProvider"
5050
]
5151
}
52-
}
52+
},
53+
"minimum-stability": "dev",
54+
"prefer-stable": true
5355
}

0 commit comments

Comments
 (0)