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'); } }