paths.php 1.75 KB
Newer Older
Nicolas Widart's avatar
Nicolas Widart committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Modules path
    |--------------------------------------------------------------------------
    |
    | Here you may update the modules path.
    |
    */

    'modules' => base_path('Modules'),

    /*
    |--------------------------------------------------------------------------
    | Modules assets path
    |--------------------------------------------------------------------------
    |
    | Here you may update the modules assets path.
    |
    */

    'assets' => public_path('modules'),

    /*
    |--------------------------------------------------------------------------
    | The migrations path
    |--------------------------------------------------------------------------
    |
    | Where you run 'module:publish-migration' command, where do you publish the
    | the migration files?
    |
    */

    'migration' => app_path('database/migrations'),

    /*
    |--------------------------------------------------------------------------
    | Generator path
    |--------------------------------------------------------------------------
    |
    | Here you may update the modules generator path.
    |
    */

    'generator' => [
Nicolas Widart's avatar
Nicolas Widart committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62
        'assets' => '/Assets',
        'config' => '/Config',
        'command' => '/Console',
        'migration' => '/Database/Migrations',
        'model' => '/Entities',
        'repository' => '/Repositories',
        'seeder' => '/Database/Seeders',
        'controller' => '/Http/Controllers',
        'filter' => '/Http/Filters',
        'request' => '/Http/Requests',
        'provider' => '/Providers',
        'lang' => '/Resources/lang',
        'views' => '/Resources/views',
        'test' => '/Tests',
Nicolas Widart's avatar
Nicolas Widart committed
63
    ]
Nicolas Widart's avatar
Nicolas Widart committed
64
];