careforworkers/frontend
Frontend For Care For Workers Applications
dev-master
2019-06-10 09:59 UTC
Requires
- php:>=5.4.0
- elitedivision/amos-core:*
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
This README would normally document whatever steps are necessary to get your application up and running.
What is this repository for?
Repository for Care For Workers Frontend Application
How do I get set up?
Composer.json
"careforworkers/frontend": "dev-master"
Configuration files - Amos4 Platforms
frontend/config/modules-others.php
'careforworkers-frontend' => [
'class' => 'careforworkers\frontend\Module',
]
frontend/config/main.php
return [
'id' => 'app-frontend',
'basePath' => dirname(__DIR__),
'controllerNamespace' => 'careforworkers\frontend\controllers',
'defaultRoute' => 'careforworkers-frontend/site/index',
'homeUrl' => 'careforworkers-frontend/site/index',
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
'bootstrap' => $bootstrap,
'components' => $components,
'modules' => $modules,
'params' => $params,
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
];
frontend/config/components-others.php
'urlManager' => [
'class' => 'yii\web\UrlManager',
'showScriptName' => false,
'enablePrettyUrl' => true,
'rules' => array(
'site/<action>' => 'careforworkers-frontend/site/<action>',
),
],