Skip to content

Commit 1fca4da

Browse files
authored
Merge pull request #31 from peter279k/drop_php56
Drop php-5.6, let package require 7.0 at least
2 parents d4387f9 + 9d541cf commit 1fca4da

File tree

3 files changed

+459
-286
lines changed

3 files changed

+459
-286
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,7 +15,7 @@
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",
@@ -24,7 +24,7 @@
2424
},
2525
"require-dev": {
2626
"doctrine/instantiator": "1.0.*",
27-
"phpunit/phpunit": "~5.6",
27+
"phpunit/phpunit": "^6.5",
2828
"satooshi/php-coveralls": "^1.0"
2929
},
3030
"autoload": {
@@ -40,7 +40,7 @@
4040
"config": {
4141
"sort-packages": true,
4242
"platform": {
43-
"php": "5.6"
43+
"php": "7.0"
4444
}
4545
}
4646
}

0 commit comments

Comments
 (0)