leave moudle setup

This commit is contained in:
ranjangumanju
2024-04-04 22:01:09 +05:45
parent dfdc927a56
commit 5cc42edcba
17 changed files with 58 additions and 48 deletions

View File

@ -12,7 +12,7 @@ return [
|
| Default module namespace.
|
*/
*/
'namespace' => 'Modules',
@ -23,7 +23,7 @@ return [
|
| Default module stubs.
|
*/
*/
'stubs' => [
'enabled' => false,
@ -69,7 +69,7 @@ return [
| This path is used to save the generated module.
| This path will also be added automatically to the list of scanned folders.
|
*/
*/
'modules' => base_path('Modules'),
/*
@ -79,7 +79,7 @@ return [
|
| Here you may update the modules' assets path.
|
*/
*/
'assets' => public_path('modules'),
/*
@ -90,7 +90,7 @@ return [
| Where you run the 'module:publish-migration' command, where do you publish the
| the migration files?
|
*/
*/
'migration' => base_path('database/migrations'),
@ -101,8 +101,8 @@ return [
|
| app folder name
| for example can change it to 'src' or 'App'
*/
'app_folder' => '',
*/
'app_folder' => 'app/',
/*
|--------------------------------------------------------------------------
@ -110,30 +110,30 @@ return [
|--------------------------------------------------------------------------
| Customise the paths where the folders will be generated.
| Setting the generate key to false will not generate that folder
*/
*/
'generator' => [
//
'channels' => ['path' => 'Broadcasting', 'generate' => false],
'command' => ['path' => 'Console', 'generate' => false],
'emails' => ['path' => 'Emails', 'generate' => false],
'event' => ['path' => 'Events', 'generate' => false],
'jobs' => ['path' => 'Jobs', 'generate' => false],
'listener' => ['path' => 'Listeners', 'generate' => false],
'model' => ['path' => 'Models', 'generate' => true],
'notifications' => ['path' => 'Notifications', 'generate' => false],
'observer' => ['path' => 'Observers', 'generate' => false],
'policies' => ['path' => 'Policies', 'generate' => false],
'provider' => ['path' => 'Providers', 'generate' => true],
'route-provider' => ['path' => 'Providers', 'generate' => true],
'repository' => ['path' => 'Repositories', 'generate' => true],
'resource' => ['path' => 'Transformers', 'generate' => false],
'rules' => ['path' => 'Rules', 'generate' => false],
'component-class' => ['path' => 'View/Components', 'generate' => false],
// app/
'channels' => ['path' => 'app/Broadcasting', 'generate' => false],
'command' => ['path' => 'app/Console', 'generate' => false],
'emails' => ['path' => 'app/Emails', 'generate' => false],
'event' => ['path' => 'app/Events', 'generate' => false],
'jobs' => ['path' => 'app/Jobs', 'generate' => false],
'listener' => ['path' => 'app/Listeners', 'generate' => false],
'model' => ['path' => 'app/Models', 'generate' => true],
'notifications' => ['path' => 'app/Notifications', 'generate' => false],
'observer' => ['path' => 'app/Observers', 'generate' => false],
'policies' => ['path' => 'app/Policies', 'generate' => false],
'provider' => ['path' => 'app/Providers', 'generate' => true],
'route-provider' => ['path' => 'app/Providers', 'generate' => true],
'repository' => ['path' => 'app/Repositories', 'generate' => true],
'resource' => ['path' => 'app/Transformers', 'generate' => false],
'rules' => ['path' => 'app/Rules', 'generate' => false],
'component-class' => ['path' => 'app/View/Components', 'generate' => false],
// Http/
'controller' => ['path' => 'Http/Controllers', 'generate' => true],
'filter' => ['path' => 'Http/Middleware', 'generate' => false],
'request' => ['path' => 'Http/Requests', 'generate' => false],
// app/Http/
'controller' => ['path' => 'app/Http/Controllers', 'generate' => true],
'filter' => ['path' => 'app/Http/Middleware', 'generate' => false],
'request' => ['path' => 'app/Http/Requests', 'generate' => true],
// config/
'config' => ['path' => 'config', 'generate' => true],
@ -141,7 +141,7 @@ return [
// database/
'migration' => ['path' => 'database/migrations', 'generate' => true],
'seeder' => ['path' => 'database/seeders', 'generate' => true],
'factory' => ['path' => 'database/factories', 'generate' => false],
'factory' => ['path' => 'database/factories', 'generate' => true],
// lang/
'lang' => ['path' => 'lang', 'generate' => false],
@ -168,7 +168,7 @@ return [
| Here you can define which commands will be visible and used in your
| application. You can add your own commands to merge section.
|
*/
*/
'commands' => ConsoleServiceProvider::defaultCommands()
->merge([
// New commands go here
@ -182,7 +182,7 @@ return [
| Here you define which folder will be scanned. By default will scan vendor
| directory. This is useful if you host the package in packagist website.
|
*/
*/
'scan' => [
'enabled' => false,
@ -197,7 +197,7 @@ return [
|
| Here is the config for the composer.json file, generated by this package
|
*/
*/
'composer' => [
'vendor' => env('MODULES_VENDOR', 'nwidart'),
@ -215,7 +215,7 @@ return [
|
| Here is the config for setting up the caching feature.
|
*/
*/
'cache' => [
'enabled' => false,
'driver' => 'file',
@ -228,7 +228,7 @@ return [
| Setting one to false will require you to register that part
| in your own Service Provider class.
|--------------------------------------------------------------------------
*/
*/
'register' => [
'translations' => true,
/**
@ -245,7 +245,7 @@ return [
| You can define new types of activators here, file, database, etc. The only
| required parameter is 'class'.
| The file activator will store the activation status in storage/installed_modules
*/
*/
'activators' => [
'file' => [
'class' => FileActivator::class,