Skip to content

Commit e8f085e

Browse files
committed
Set 7.2 as min version
1 parent feebd25 commit e8f085e

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.travis.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
language: php
22

33
php:
4-
- 7.0
5-
- 7.1
64
- 7.2
5+
- 7.3
76

87
sudo: false
98

109
install:
1110
- travis_retry composer install --no-interaction --prefer-source
1211

1312
script:
14-
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then vendor/bin/phpunit; fi
15-
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; fi
13+
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
1614

1715
after_script:
18-
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
19-
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
16+
- wget https://scrutinizer-ci.com/ocular.phar
17+
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=7.0.0",
17+
"php": ">=7.2.0",
1818
"guzzlehttp/guzzle": "~6.0"
1919
},
2020
"require-dev": {

0 commit comments

Comments
 (0)