From e1e21c194edd883fd0b03b7c24fd6f03fca9f15c Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:37:38 +0100 Subject: [PATCH 1/7] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Add=20Laravel=205.8=20?= =?UTF-8?q?support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fef3df2..f0e4a2a 100644 --- a/composer.json +++ b/composer.json @@ -7,11 +7,11 @@ "minimum-stability": "stable", "require": { "php" : "^7.1", - "illuminate/support": "~5.6.0|~5.7.0" + "illuminate/support": "~5.6.0|~5.7.0|~5.8.0" }, "require-dev": { - "phpunit/phpunit": "^7.0", - "orchestra/testbench": "~3.6.0|~3.7.0" + "phpunit/phpunit": "^7.0|^8.0", + "orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0" }, "autoload": { "psr-4": { From 799d0c629984456ec3a3d8fd858a8ac98fc8911d Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:38:03 +0100 Subject: [PATCH 2/7] =?UTF-8?q?=F0=9F=94=A7=20Ignore=20phpunit=20cache?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dbe7904..2589d67 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ vendor/ .idea/ composer.lock .php_cs.cache -build/ \ No newline at end of file +build/ +.phpunit.result.cache \ No newline at end of file From c8785a67cc1253886c7f18717322a72c21c70f48 Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:38:14 +0100 Subject: [PATCH 3/7] =?UTF-8?q?=E2=9C=A8=20Add=20return=20types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 56ff1d1..d9dbf5b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,7 +11,7 @@ abstract class TestCase extends Orchestra /** * Setup the test environment. */ - public function setUp() + public function setUp(): void { parent::setUp(); } From e11212903c843c6a196d01a656295842df3ebad0 Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:39:11 +0100 Subject: [PATCH 4/7] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Drop=20php=207.1=20sup?= =?UTF-8?q?port?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f0e4a2a..bdd9f1b 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ ], "minimum-stability": "stable", "require": { - "php" : "^7.1", + "php" : "^7.2", "illuminate/support": "~5.6.0|~5.7.0|~5.8.0" }, "require-dev": { From b45b66e7a7f35b2e6a4164c2deeac2884a1e03fa Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:40:30 +0100 Subject: [PATCH 5/7] =?UTF-8?q?=F0=9F=93=9D=20Add=20requirements=20to=20RE?= =?UTF-8?q?ADME?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e6473cb..205264c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ Laravel Collection Addons This package provides some additional functions that can be used with Laravel's Collection. +## Requirements + +This package requires PHP in`>= 7.2` and Laravel in `>= 5.7`. + Installation --- You can install the package via composer: From ed20afd7d6a5445bd73da03ba105b8d608e95c4b Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:41:09 +0100 Subject: [PATCH 6/7] =?UTF-8?q?=F0=9F=94=A5=20Drop=20support=20for=20Larav?= =?UTF-8?q?el=205.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index bdd9f1b..7ad029e 100644 --- a/composer.json +++ b/composer.json @@ -7,11 +7,11 @@ "minimum-stability": "stable", "require": { "php" : "^7.2", - "illuminate/support": "~5.6.0|~5.7.0|~5.8.0" + "illuminate/support": "~5.7.0|~5.8.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0", - "orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0" + "orchestra/testbench": "~3.7.0|~3.8.0" }, "autoload": { "psr-4": { From bdc33e2d72d23bb2aa287d50954c8485e0258bbc Mon Sep 17 00:00:00 2001 From: Rathes Sachchithananthan Date: Thu, 28 Feb 2019 07:42:30 +0100 Subject: [PATCH 7/7] =?UTF-8?q?=F0=9F=93=9D=20Add=20information=20to=20Cha?= =?UTF-8?q?ngelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18801f8..b44854f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ CHANGELOG === -This changelog contains all notable change of the laravel-collection-addon package \ No newline at end of file +This changelog contains all notable change of the laravel-collection-addon package + +## 2.0.0 + +- This version drops support for Laravel 5.6 and PHP 7.1 +- It add support for Laravel 5.8 \ No newline at end of file