Skip to content

Commit 8a09da8

Browse files
committed
Add PHP8 support
1 parent 9cfbc39 commit 8a09da8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Diff for: .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:
@@ -13,8 +19,8 @@ services:
1319
- mysql
1420

1521
install:
16-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-interaction --prefer-dist
17-
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
22+
- travis_retry composer install --no-interaction --prefer-dist
23+
- travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
1824

1925
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
2026

Diff for: 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.5",
15+
"php": "^7.2.5|^8.0",
1616
"ext-json": "*",
1717
"illuminate/support": "^7.0",
1818
"illuminate/console": "^7.0",

0 commit comments

Comments
 (0)