Skip to content

Commit b487d57

Browse files
authored
Merge pull request #12 from duboism/use_php_5_and_7
Remove PHP < 5.6 and add last versions of PHP 7
2 parents 8d24c26 + d2a3bd6 commit b487d57

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
language: php
22
sudo: false
33
php:
4-
- 5.4
5-
- 5.5
64
- 5.6
75
- 7.0
86
- 7.1
97
- 7.2
8+
- 7.3
9+
- 7.4
10+
# Disable xdebug for PHP >= 7.3
11+
# https://stackoverflow.com/questions/65172031/vendor-bin-phpunit-exited-with-2
12+
before_script:
13+
- phpenv config-rm xdebug.ini
1014
script:
1115
- pear list
1216
- pear channel-update pear.php.net

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"type": "library",
4545
"require": {
46-
"php": ">=5.4",
46+
"php": ">=5.6",
4747
"pear/pear-core-minimal": "^1.10.1"
4848
},
4949
"require-dev": {

0 commit comments

Comments
 (0)