diff options
Diffstat (limited to 'config/optimus.components.php')
-rw-r--r-- | config/optimus.components.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/optimus.components.php b/config/optimus.components.php new file mode 100644 index 0000000..33a4170 --- /dev/null +++ b/config/optimus.components.php @@ -0,0 +1,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' +]; |