Skip to content

Commit

Permalink
Merge pull request #25 from jameslkingsley/php-8
Browse files Browse the repository at this point in the history
Add PHP 8 Support
  • Loading branch information
imliam authored Jan 9, 2021
2 parents 7e41113 + 141027b commit 118af7a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
max-parallel: 15
fail-fast: false
matrix:
php-versions: ["7.3", "7.4"]
php-versions: ["7.3", "7.4", "8.0"]
composer-flags: ["--prefer-lowest", "--prefer-stable"]
env:
- LARAVEL_VERSION='^7.0'
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/console": "^7.0|^8.0"
},
Expand Down
3 changes: 0 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
Expand Down

0 comments on commit 118af7a

Please sign in to comment.