Skip to content

Commit ff32439

Browse files
authored
fix: update laravel version (#3)
1 parent 09c8ab0 commit ff32439

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"require": {
66
"php": "^8.0",
77
"predis/predis": "^1.1",
8-
"laravel/framework": "^9.0"
8+
"laravel/framework": "^8.0 | ^9.0"
99
},
1010
"require-dev": {
1111
"nunomaduro/phpinsights": "^2.2",

src/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function register(): void
2525
public function boot(): void
2626
{
2727
$this->publishes([
28-
__DIR__ . '/../config/redis.php.php' => config_path('redis.php'),
28+
__DIR__ . '/../config/redis.php' => config_path('redis.php'),
2929
], 'config');
3030
}
3131
}

0 commit comments

Comments
 (0)