Skip to content

Commit 8759b8e

Browse files
authored
Merge pull request #278 from ADmad/maintainence
Bump up min. PHP version to 7.2 and get test suite running again.
2 parents b976168 + 650aee4 commit 8759b8e

29 files changed

+140
-1745
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
build
22
vendor
3-
docs/_site
3+
docs/_site
4+
.phpunit.result.cache
5+
composer.lock

.travis.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
language: php
22

3-
sudo: false
4-
53
env:
64
- COMPOSER_OPTS=""
75
- COMPOSER_OPTS="--prefer-lowest"
86

97
php:
10-
- 5.5
11-
- 5.6
12-
- 7.0
13-
- 7.1
148
- 7.2
9+
- 7.4
1510

1611
cache:
1712
directories:
@@ -24,7 +19,7 @@ install:
2419
- travis_retry composer update --no-interaction --prefer-source
2520

2621
script:
27-
- phpunit --coverage-text --coverage-clover=coverage.clover
22+
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
2823

2924
after_script:
3025
- wget https://scrutinizer-ci.com/ocular.phar

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"require": {
2424
"intervention/image": "^2.4",
2525
"league/flysystem": "^1.0",
26-
"php": "^5.5 | ^7.0",
26+
"php": "^7.2",
2727
"psr/http-message": "^1.0"
2828
},
2929
"require-dev": {
30-
"mockery/mockery": "~0.9",
31-
"phpunit/php-token-stream": "^1.4",
32-
"phpunit/phpunit": "~4.4"
30+
"mockery/mockery": "^1.2",
31+
"phpunit/phpunit": "^8.5",
32+
"phpunit/php-token-stream": "^3.1"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)