Skip to content

Commit 8234210

Browse files
committed
Add PHP8 support
1 parent 1f35847 commit 8234210

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.travis.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ php:
44
- 7.2
55
- 7.3
66
- 7.4
7+
- 8.0
8+
9+
env:
10+
global:
11+
- COMPOSER_MEMORY_LIMIT=-1
12+
- XDEBUG_MODE=coverage
713

814
cache:
915
directories:
@@ -16,8 +22,8 @@ before_install:
1622
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
1723

1824
install:
19-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-interaction --prefer-dist
20-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
25+
- travis_retry composer install --no-interaction --prefer-dist
26+
- travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
2127

2228
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
2329

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"email": "[email protected]"
1313
}],
1414
"require": {
15-
"php": "^7.2",
15+
"php": "^7.2.5|^8.0",
1616
"ext-json": "*",
1717
"illuminate/support": "^6.0",
1818
"illuminate/console": "^6.0",

0 commit comments

Comments
 (0)