Skip to content

Commit 73a7b88

Browse files
committed
Add PHP8 support
1 parent d19117c commit 73a7b88

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ 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:
1016
- $HOME/.composer/cache
1117

1218
install:
13-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-interaction --prefer-dist
14-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
19+
- travis_retry composer install --no-interaction --prefer-dist
20+
- travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
1521

1622
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
1723

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"email": "[email protected]"
1313
}],
1414
"require": {
15-
"php": "^7.2.5",
15+
"php": "^7.2.5|^8.0",
1616
"illuminate/support": "^7.0",
1717
"illuminate/database": "^7.0"
1818
},

0 commit comments

Comments
 (0)