Skip to content

Commit a2a192f

Browse files
committed
wip
1 parent a417daf commit a2a192f

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: [7.4, 7.3, 7.2]
14-
laravel: [6.*, 5.8.*]
14+
laravel: [7.*, 6.*, 5.8.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
os: [ubuntu-latest]
1717
include:
18+
- laravel: 7.*
19+
testbench: 5.*
1820
- laravel: 6.*
1921
testbench: 4.*
2022
- laravel: 5.8.*

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
],
2222
"require": {
2323
"php": "^7.1",
24-
"illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0",
25-
"illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0",
26-
"illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0"
24+
"illuminate/database": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0",
25+
"illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0",
26+
"illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^7.0|^8.0",
30-
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0",
29+
"phpunit/phpunit": "^7.0|^8.0|^9.0",
30+
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0",
3131
"ext-json": "*"
3232
},
3333
"autoload": {
@@ -53,5 +53,7 @@
5353
"Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
5454
]
5555
}
56-
}
56+
},
57+
"minimum-stability": "dev",
58+
"prefer-stable": true
5759
}

0 commit comments

Comments
 (0)