rhopress / yii2-rhopress
The Base Components of Rho Press
Installs: 14
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- vistart/yii2-models: dev-master
- yiisoft/yii2: >=2.0.6
This package is auto-updated.
Last update: 2019-12-21 16:35:58 UTC
README
The Base Components of Rho Press
Installation
The preferred way to install this extension is through composer.
Either run:
php composer.phar require rhopress/yii2-rhopress:dev-master
or add
"rhopress/yii2-rhopress": "dev-master"
to the require section of your composer.json
file.
Usage
Once this extension is installed, you can simply add rhopress
module to the
module
section of main config of your project, like following:
$config = [ ... 'module' => [ ... 'rhopress' => [ 'class' => 'rhopress\Module' ], ... ], ... ]
If you want to use it in bootstrap process, please attach the module name into
bootstrap
section, like following:
$config = [ ... 'bootstrap' => [ ... 'rhopress' ... ], ... ]