added ai to module installation

This commit is contained in:
denisdulici
2020-05-07 17:17:04 +03:00
parent 8f37813256
commit 87e4b20dc5
2 changed files with 48 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ return [
*/
'stubs' => [
'enabled' => true,
'path' => base_path() . '/app/Console/Stubs/Modules',
'path' => base_path('app/Console/Stubs/Modules'),
'files' => [
'listeners/install' => 'Listeners/InstallModule.php',
'providers/event' => 'Providers/Event.php',
@@ -67,7 +67,7 @@ return [
| automatically to list of scanned folders.
|
*/
'modules' => base_path('modules'),
'modules' => base_path(env('MODULE_PATHS_MODULES', 'modules')),
/*
|--------------------------------------------------------------------------
@@ -77,7 +77,7 @@ return [
| Here you may update the modules assets path.
|
*/
'assets' => public_path('modules'),
'assets' => public_path(env('MODULE_PATHS_ASSETS', 'modules')),
/*
|--------------------------------------------------------------------------
@@ -88,7 +88,7 @@ return [
| the migration files?
|
*/
'migration' => base_path('database/migrations'),
'migration' => base_path(env('MODULE_PATHS_MIGRATION', 'database/migrations')),
/*
|--------------------------------------------------------------------------