We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c8ab0 commit ff32439Copy full SHA for ff32439
composer.json
@@ -5,7 +5,7 @@
5
"require": {
6
"php": "^8.0",
7
"predis/predis": "^1.1",
8
- "laravel/framework": "^9.0"
+ "laravel/framework": "^8.0 | ^9.0"
9
},
10
"require-dev": {
11
"nunomaduro/phpinsights": "^2.2",
src/ServiceProvider.php
@@ -25,7 +25,7 @@ public function register(): void
25
public function boot(): void
26
{
27
$this->publishes([
28
- __DIR__ . '/../config/redis.php.php' => config_path('redis.php'),
+ __DIR__ . '/../config/redis.php' => config_path('redis.php'),
29
], 'config');
30
}
31
0 commit comments