40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Application Namespace
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the root namespace used by the various Laravel generator tasks
|
|
| that are able to build controllers, console commands and many other
|
|
| classes for you. You may set the name via the "app:name" command.
|
|
|
|
|
*/
|
|
|
|
'root' => 'App\\',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Generator Namespaces
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These namespaces are utilized by the various class generator Artisan
|
|
| commands. You are free to change them to whatever you wish or not
|
|
| at all. The "app:name" command is the easiest way to set these.
|
|
|
|
|
*/
|
|
|
|
'console' => 'App\Console\\',
|
|
|
|
'controllers' => 'App\Http\Controllers\\',
|
|
|
|
'filters' => 'App\Http\Filters\\',
|
|
|
|
'providers' => 'App\Providers\\',
|
|
|
|
'requests' => 'App\Http\Requests\\',
|
|
|
|
];
|