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.
2 parents 9877d7e + 28c8ad9 commit 380aec4Copy full SHA for 380aec4
src/ServiceProvider.php
@@ -22,7 +22,8 @@ class ServiceProvider extends BaseServiceProvider
22
*/
23
public function register()
24
{
25
- //
+ $this->mergeConfigFrom(__DIR__.'/../config/laravel-aws-cache.php', 'laravel-aws-cache');
26
+
27
}
28
29
/**
@@ -32,10 +33,6 @@ public function register()
32
33
34
public function boot(CacheManager $manager, Repository $config)
35
- $this->publishes([
36
- __DIR__.'/../config/laravel-aws-cache.php' => config_path('laravel-aws-cache.php'),
37
- ]);
38
-
39
if (config('laravel-aws-cache.enable')) {
40
$this->insertCredentialSetting($manager, $config);
41
0 commit comments