From 12a0706582a512bafb76e259c9332cc75459a680 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Thu, 8 Feb 2018 17:57:14 +0800 Subject: [PATCH 1/4] Update version compatibility. Signed-off-by: Mior Muhammad Zaki --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6437412..d768e85 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Laravel | Imagine 5.3.x | 3.3.x 5.4.x | 3.4.x 5.5.x | 3.5.x - 5.6.x | 3.6.x@dev + 5.6.x | 3.6.x ## Installation From 891a838b088d9c1590727155f2749c4b9a91156c Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Thu, 3 May 2018 09:33:44 +0800 Subject: [PATCH 2/4] Remove self. Signed-off-by: Mior Muhammad Zaki --- phpunit.xml | 2 +- src/ImagineManager.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 533f75d..d9cbd7a 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -8,7 +8,7 @@ convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" - syntaxCheck="false" + verbose="true" > diff --git a/src/ImagineManager.php b/src/ImagineManager.php index 8cc921f..083be4b 100644 --- a/src/ImagineManager.php +++ b/src/ImagineManager.php @@ -86,7 +86,7 @@ public function getConfig(): array * * @return $this */ - public function setConfig(array $config): self + public function setConfig(array $config) { $this->config = $config; From 0a4fd8a43bc88e0d25b9a7b83537644f83c1497a Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Thu, 3 May 2018 10:03:28 +0800 Subject: [PATCH 3/4] Update deps. Signed-off-by: Mior Muhammad Zaki --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 2ff62bd..5049917 100644 --- a/composer.json +++ b/composer.json @@ -11,15 +11,15 @@ } ], "require": { - "php": ">=7.0", + "php": ">=7.1", "imagine/imagine": "~0.7", "orchestra/support-core": "~3.6.0", "orchestra/support-providers": "~3.6.0" }, "require-dev": { "illuminate/container": "~5.6.0", - "mockery/mockery": "~1.0", - "phpunit/phpunit": "~7.0" + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.0" }, "autoload": { "psr-4": { From b8fd19a15be447b3bb959dee8633ab68d8a57867 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 25 Jun 2018 09:43:21 +0800 Subject: [PATCH 4/4] Update travis. Signed-off-by: Mior Muhammad Zaki --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c3db027..fe23194 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ before_script: - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-source --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi - - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~1.0" --prefer-source --no-interaction --dev; fi + - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "php-coveralls/php-coveralls=^2.1" --prefer-source --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then ./vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi