2014-08-20 00:10:30 -05:00
|
|
|
<?php
|
|
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
return [
|
2014-08-20 00:10:30 -05:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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\\',
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
2014-08-21 21:25:03 -05:00
|
|
|
| Generator Namespaces
|
2014-08-20 00:10:30 -05:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2014-08-21 21:25:03 -05:00
|
|
|
| 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.
|
2014-08-20 00:10:30 -05:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2014-08-21 21:25:03 -05:00
|
|
|
'console' => 'App\Console\\',
|
|
|
|
|
|
2014-08-21 22:30:44 -05:00
|
|
|
'controllers' => 'App\Http\Controllers\\',
|
2014-08-20 00:10:30 -05:00
|
|
|
|
2014-08-21 21:25:03 -05:00
|
|
|
'filters' => 'App\Http\Filters\\',
|
|
|
|
|
|
|
|
|
|
'providers' => 'App\Providers\\',
|
|
|
|
|
|
|
|
|
|
'requests' => 'App\Http\Requests\\',
|
|
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
];
|