Skip to content

Commit 84b22f3

Browse files
committed
Drop php-5.6, let package require 7.0 at least
1 parent 95f141f commit 84b22f3

File tree

3 files changed

+460
-287
lines changed

3 files changed

+460
-287
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: php
22

33
php:
4-
- 5.6
54
- 7.0
65
- 7.1
76
- 7.2
7+
- 7.3
88

99
before_script:
1010
- printf "\n" | pecl install imagick
@@ -19,4 +19,4 @@ after_script:
1919
- php vendor/bin/coveralls -v
2020

2121
after_success:
22-
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;'
22+
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;'

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^5.6|^7.0|^7.1|^7.2|^7.3",
18+
"php": "^7.0|^7.1|^7.2|^7.3",
1919
"ext-json": "*",
2020
"intervention/image": "^2.3",
2121
"lasserafn/php-initials": "^2.20",
2222
"lasserafn/php-string-script-language": "^0.1.0"
2323
},
2424
"require-dev": {
2525
"doctrine/instantiator": "1.0.*",
26-
"phpunit/phpunit": "~5.6",
26+
"phpunit/phpunit": "^6.5",
2727
"satooshi/php-coveralls": "^1.0"
2828
},
2929
"autoload": {
@@ -39,7 +39,7 @@
3939
"config": {
4040
"sort-packages": true,
4141
"platform": {
42-
"php": "5.6"
42+
"php": "7.0"
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)