From a240b6360a12c31f6edcc95fed0bf02f148cb9fb Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 18 Mar 2019 18:36:27 +0100 Subject: [PATCH 1/8] Update for Laravel 5.8 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3bd63be..8e23e3c 100644 --- a/composer.json +++ b/composer.json @@ -17,8 +17,8 @@ ], "require": { "php": ">=7.1.3", - "illuminate/support": "5.7.*", - "illuminate/database": "5.7.*" + "illuminate/support": "5.8.*", + "illuminate/database": "5.8.*" }, "autoload": { "psr-4": { From d6f399fc60096103c60b4f86f6a0c248f78ce107 Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 18 Mar 2019 21:57:51 +0100 Subject: [PATCH 2/8] Update composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 8e23e3c..c64b826 100644 --- a/composer.json +++ b/composer.json @@ -26,10 +26,10 @@ } }, "require-dev": { - "orchestra/testbench": "^3.6", - "orchestra/database": "^3.6", + "orchestra/testbench": "^3.8", + "orchestra/database": "^3.8", "mockery/mockery": "^1.0", - "phpunit/phpunit": "~7.0", + "phpunit/phpunit": "~8.0", "satooshi/php-coveralls": "^2.0", "sebastian/environment": "^3.1" }, From c299c048daa27c2c5a0b5aef9422beb8a0a9c6e8 Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 18 Mar 2019 22:05:21 +0100 Subject: [PATCH 3/8] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c64b826..803e64a 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,7 @@ "mockery/mockery": "^1.0", "phpunit/phpunit": "~8.0", "satooshi/php-coveralls": "^2.0", - "sebastian/environment": "^3.1" + "sebastian/environment": "^4.1" }, "autoload-dev": { "classmap": [ From 598d7ab4a146d1e98fc4faf9bce9bc8e488ebace Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 25 Mar 2019 08:54:28 +0100 Subject: [PATCH 4/8] Update TestCase.php --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 31b8416..9250ee9 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -5,7 +5,7 @@ class TestCase extends TestBenchTestCase { - public function setUp() + public function setUp(): void { parent::setUp(); } From 9aa70d5986f800073a014a059870b9b9656eeb0e Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 25 Mar 2019 09:01:24 +0100 Subject: [PATCH 5/8] Update HasRoleAndPermissionTest.php --- tests/src/Traits/HasRoleAndPermissionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Traits/HasRoleAndPermissionTest.php b/tests/src/Traits/HasRoleAndPermissionTest.php index d9d616a..3216b46 100644 --- a/tests/src/Traits/HasRoleAndPermissionTest.php +++ b/tests/src/Traits/HasRoleAndPermissionTest.php @@ -7,7 +7,7 @@ class HasRoleAndPermissionTest extends \TestCase { - public function setUp() + public function setUp(): void { parent::setUp(); $this->withFactories(__DIR__ . '/../../database/factories'); From 6d36fd56e69cdb4e107bebc4bead54ea7c4dda8c Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 25 Mar 2019 09:01:42 +0100 Subject: [PATCH 6/8] Update PermissionHasRelationsTest.php --- tests/src/Traits/PermissionHasRelationsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Traits/PermissionHasRelationsTest.php b/tests/src/Traits/PermissionHasRelationsTest.php index 0d7a04b..9340c4f 100644 --- a/tests/src/Traits/PermissionHasRelationsTest.php +++ b/tests/src/Traits/PermissionHasRelationsTest.php @@ -6,7 +6,7 @@ class PermissionHasRelationsTest extends \TestCase { - public function setUp() + public function setUp(): void { parent::setUp(); $this->withFactories(__DIR__ . '/../../database/factories'); From 0165405c53c15ff5faeddf9b21434affad951aa3 Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 25 Mar 2019 09:07:29 +0100 Subject: [PATCH 7/8] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 803e64a..7d5e9f8 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": ">=7.1.3", + "php": ">=7.2", "illuminate/support": "5.8.*", "illuminate/database": "5.8.*" }, From 3e4fe565c4359a6a3938355cb4e3162b43a240d5 Mon Sep 17 00:00:00 2001 From: PawelDmochowskiDRAST Date: Mon, 25 Mar 2019 09:19:58 +0100 Subject: [PATCH 8/8] Update .travis.yml --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c09f1bd..ae71bf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php sudo: false php: - - 7.1 - 7.2 env: @@ -12,11 +11,11 @@ env: matrix: fast_finish: true include: - - php: 7.1 + - php: 7.2 env: setup=lowest - - php: 7.1 + - php: 7.2 env: setup=stable - - php: 7.1 + - php: 7.2 env: coverage=yes cache: