From bd0ad031c7d299d0fe53bba41e239ab5aa6a893f Mon Sep 17 00:00:00 2001 From: Malico Date: Wed, 9 Feb 2022 15:28:13 +0100 Subject: [PATCH] Laravel 9 Support --- composer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index dc86e6e..1bc4cba 100644 --- a/composer.json +++ b/composer.json @@ -19,14 +19,14 @@ }, "require": { "hidehalo/nanoid-php": "^1.1", - "illuminate/auth": "^8.0", - "illuminate/support": "^8.0" + "illuminate/auth": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0" }, "require-dev": { "ext-pdo": "*", "pestphp/pest": "^1.20", "friendsofphp/php-cs-fixer": "^3.1", - "orchestra/testbench": "^6.21" + "orchestra/testbench": "^7.0" }, "extra": { "laravel": { @@ -45,5 +45,10 @@ "post-autoload-dump": [ "@php ./vendor/bin/testbench package:discover --ansi" ] + }, + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true + } } }