Skip to content

Commit 118af7a

Browse files
authored
Merge pull request #25 from jameslkingsley/php-8
Add PHP 8 Support
2 parents 7e41113 + 141027b commit 118af7a

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
max-parallel: 15
99
fail-fast: false
1010
matrix:
11-
php-versions: ["7.3", "7.4"]
11+
php-versions: ["7.3", "7.4", "8.0"]
1212
composer-flags: ["--prefer-lowest", "--prefer-stable"]
1313
env:
1414
- LARAVEL_VERSION='^7.0'

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.3",
23+
"php": "^7.3|^8.0",
2424
"illuminate/support": "^7.0|^8.0",
2525
"illuminate/console": "^7.0|^8.0"
2626
},

phpunit.xml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
<testsuite name="Unit">
99
<directory suffix="Test.php">./tests/Unit</directory>
1010
</testsuite>
11-
<testsuite name="Feature">
12-
<directory suffix="Test.php">./tests/Feature</directory>
13-
</testsuite>
1411
</testsuites>
1512
<filter>
1613
<whitelist processUncoveredFilesFromWhitelist="true">

0 commit comments

Comments
 (0)