From 95aeb23650ad6bc2583c7594198fa31b788afcf2 Mon Sep 17 00:00:00 2001 From: tangxuliang <1297441127@qq.com> Date: Thu, 24 Mar 2022 14:21:24 +0800 Subject: [PATCH] fix: update laravel version --- composer.json | 2 +- src/ServiceProvider.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 06b1465..996d292 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "require": { "php": "^8.0", "predis/predis": "^1.1", - "laravel/framework": "^9.0" + "laravel/framework": "^8.0 | ^9.0" }, "require-dev": { "nunomaduro/phpinsights": "^2.2", diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 16c59d9..bbd2c66 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -25,7 +25,7 @@ public function register(): void public function boot(): void { $this->publishes([ - __DIR__ . '/../config/redis.php.php' => config_path('redis.php'), + __DIR__ . '/../config/redis.php' => config_path('redis.php'), ], 'config'); } }