6
6
use A17 \CmsToolkit \Commands \ModuleMake ;
7
7
use A17 \CmsToolkit \Commands \RefreshLQIP ;
8
8
use A17 \CmsToolkit \Commands \Setup ;
9
- use A17 \CmsToolkit \Commands \UpdateCmsAssets ;
10
9
use A17 \CmsToolkit \Helpers \FlashNotifier ;
11
10
use A17 \CmsToolkit \Http \ViewComposers \ActiveNavigation ;
12
11
use A17 \CmsToolkit \Http \ViewComposers \CurrentUser ;
32
31
use Lsrur \Inspector \InspectorServiceProvider ;
33
32
use MathiasGrimm \LaravelEnvValidator \ServiceProvider as EnvValidatorServiceProvider ;
34
33
use Sofa \ModelLocking \ServiceProvider as ModelLockingServiceProvider ;
35
-
36
34
use View ;
37
35
38
36
class CmsToolkitServiceProvider extends ServiceProvider
@@ -46,7 +44,7 @@ class CmsToolkitServiceProvider extends ServiceProvider
46
44
FlashServiceProvider::class,
47
45
TagsServiceProvider::class,
48
46
EnvValidatorServiceProvider::class,
49
- ModelLockingServiceProvider::class
47
+ ModelLockingServiceProvider::class,
50
48
];
51
49
52
50
protected $ aliases = [
@@ -154,8 +152,6 @@ private function publishConfigs()
154
152
private function mergeConfigs ()
155
153
{
156
154
$ this ->mergeConfigFrom (__DIR__ . '/../config/cms-toolkit.php ' , 'cms-toolkit ' );
157
- $ this ->mergeConfigFrom (__DIR__ . '/../config/services.php ' , 'services ' );
158
- $ this ->mergeConfigFrom (__DIR__ . '/../config/laravel-env-validator.php ' , 'laravel-env-validator ' );
159
155
$ this ->mergeConfigFrom (__DIR__ . '/../config/disks.php ' , 'filesystems.disks ' );
160
156
$ this ->mergeConfigFrom (__DIR__ . '/../config/frontend.php ' , 'cms-toolkit.frontend ' );
161
157
$ this ->mergeConfigFrom (__DIR__ . '/../config/debug.php ' , 'cms-toolkit.debug ' );
@@ -165,7 +161,6 @@ private function mergeConfigs()
165
161
$ this ->mergeConfigFrom (__DIR__ . '/../config/imgix.php ' , 'cms-toolkit.imgix ' );
166
162
$ this ->mergeConfigFrom (__DIR__ . '/../config/media-library.php ' , 'cms-toolkit.media_library ' );
167
163
$ this ->mergeConfigFrom (__DIR__ . '/../config/file-library.php ' , 'cms-toolkit.file_library ' );
168
- $ this ->mergeConfigFrom (__DIR__ . '/../config/imgix.php ' , 'cms-toolkit.imgix ' );
169
164
}
170
165
171
166
private function publishMigrations ()
@@ -176,7 +171,7 @@ private function publishMigrations()
176
171
'CreateUsersTables ' => 'users-management ' ,
177
172
'CreateFilesTables ' => 'file-library ' ,
178
173
'CreateMediasTables ' => 'media-library ' ,
179
- 'CreateFeaturesTable ' => 'buckets '
174
+ 'CreateFeaturesTable ' => 'buckets ' ,
180
175
];
181
176
182
177
if ($ this ->app ->runningInConsole ()) {
@@ -215,7 +210,6 @@ private function registerCommands()
215
210
if ($ this ->app ->runningInConsole ()) {
216
211
$ this ->commands ([
217
212
Setup::class,
218
- UpdateCmsAssets::class,
219
213
ModuleMake::class,
220
214
CreateSuperAdmin::class,
221
215
RefreshLQIP::class,
0 commit comments