Skip to content

Commit 176b382

Browse files
Merge pull request #43 from stackkit/development
Test package with Laravel 9
2 parents 33fbcf9 + 94c61f3 commit 176b382

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/run-tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: [8.1, 8.0, 7.4, 7.3, 7.2]
15-
laravel: [8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*]
15+
laravel: [9.*, 8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*]
1616
os: [ubuntu-latest]
1717
include:
18+
- laravel: 9.*
19+
testbench: 7.*
1820
- laravel: 8.*
1921
testbench: 6.*
2022
- laravel: 7.*
@@ -28,6 +30,12 @@ jobs:
2830
- laravel: 5.6.*
2931
testbench: 3.6.*
3032
exclude:
33+
- laravel: 9.*
34+
php: 7.2
35+
- laravel: 9.*
36+
php: 7.3
37+
- laravel: 9.*
38+
php: 7.4
3139
- laravel: 8.*
3240
php: 7.2
3341
- laravel: 5.8.*

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Please check the table below for supported Laravel and PHP versions:
3636
| 6.x | 7.2 or 7.3 or 7.4 or 8.0
3737
| 7.x | 7.2 or 7.3 or 7.4 or 8.0
3838
| 8.x | 7.3 or 7.4 or 8.0 or 8.1
39+
| 9.x | 8.0 or 8.1
3940

4041
# Installation
4142

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
},
1616
"require-dev": {
1717
"mockery/mockery": "^1.2",
18-
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0",
19-
"symfony/console": "^4.4|^5.0"
18+
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0 || ^5.0"
2019
},
2120
"autoload": {
2221
"psr-4": {

0 commit comments

Comments
 (0)