From 07e42b78b86752ed45846896f86e66e2714ee08f Mon Sep 17 00:00:00 2001 From: JStojiljkovic Date: Sun, 25 Sep 2022 12:18:08 +0200 Subject: [PATCH 1/3] Update composer.json --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index c172f01..68bd01f 100644 --- a/composer.json +++ b/composer.json @@ -29,6 +29,9 @@ "nunomaduro/collision": "^6.0", "nunomaduro/larastan": "^2.0.1", "orchestra/testbench": "^7.0", + "pestphp/pest": "^1.21", + "pestphp/pest-plugin-laravel": "^1.1", + "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", "phpunit/phpunit": "^9.5", From d6502693c4f5e854c409a57ba779557bf5ab902a Mon Sep 17 00:00:00 2001 From: JStojiljkovic Date: Sun, 25 Sep 2022 12:22:06 +0200 Subject: [PATCH 2/3] Update composer.json --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e17bc0e..57d443e 100644 --- a/composer.json +++ b/composer.json @@ -54,7 +54,8 @@ "format": "vendor/bin/pint" }, "config": { - "sort-packages": true + "sort-packages": true, + "allow-plugins": true }, "extra": { "laravel": { From 1fc65b2865c6a115d207954184a513e97210eb67 Mon Sep 17 00:00:00 2001 From: JStojiljkovic Date: Sun, 25 Sep 2022 12:25:54 +0200 Subject: [PATCH 3/3] Changed wrong namespace of a TestCase --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 263a316..a723279 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -3,8 +3,8 @@ namespace GrapheneICT\CognitoGuard\Tests; use App\Models\User; -use App\Services\CognitoAuthServiceProvider; use Firebase\JWT\JWT; +use GrapheneICT\CognitoGuard\CognitoAuthServiceProvider; use Illuminate\Foundation\Application; use Illuminate\Foundation\Testing\DatabaseTransactions; use Illuminate\Routing\Middleware\SubstituteBindings;