Skip to content

Commit

Permalink
Support Laravel 8
Browse files Browse the repository at this point in the history
Co-authored-by: Mark van den Broek <[email protected]>
  • Loading branch information
staudenmeir and mvdnbrk committed Aug 19, 2020
1 parent 7e5a5d8 commit 8ad787f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [7.4, 7.3, 7.2]
php: [7.4, 7.3]
database: [mysql, pgsql, sqlite, sqlsrv]
release: [stable, lowest]
include:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
}
],
"require": {
"php": "^7.2.5",
"illuminate/database": "^7.0"
"php": "^7.3",
"illuminate/database": "^8.0"
},
"require-dev": {
"laravel/homestead": "^10.0",
"phpunit/phpunit": "^8.5"
"laravel/homestead": "^11.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
Expand Down
8 changes: 4 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</include>
</coverage>
</phpunit>

0 comments on commit 8ad787f

Please sign in to comment.