blob: 33a41706ac4d5d30e6c11ade141f8083d86f63aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
return [
'namespaces' => [
'Api' => base_path() . DIRECTORY_SEPARATOR . 'api',
'Infrastructure' => base_path() . DIRECTORY_SEPARATOR . 'infrastructure'
],
'protection_middleware' => [
'auth:api'
],
'resource_namespace' => 'resources',
'language_folder_name' => 'lang',
'view_folder_name' => 'views'
];
|