Skip to content

Commit

Permalink
Added PHP 8 support.
Browse files Browse the repository at this point in the history
Dropped PHP 7.1 support.
  • Loading branch information
Bilge committed Dec 15, 2020
1 parent 3c225f6 commit 4bc4625
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ sudo: false
language: php

php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0

env:
matrix:
Expand All @@ -29,7 +29,7 @@ install:
- composer update --no-progress --no-suggest $DEPENDENCIES

script:
- composer test -- --coverage-clover=build/logs/clover.xml
- XDEBUG_MODE=coverage composer test -- --coverage-clover=build/logs/clover.xml

after_success:
- composer require php-coveralls/php-coveralls:^2
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2|^8",
"scriptfusion/static-class": "^1"
},
"require-dev": {
"phpunit/phpunit": "^6"
"phpunit/phpunit": "^8.5|^9"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 4bc4625

Please sign in to comment.