sankam / yii2-maintenance
Maintenance Component for Yii2
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
- yiisoft/yii2-bootstrap: ^2.0
This package is not auto-updated.
Last update: 2025-01-27 17:35:27 UTC
README
Installation
Install With Composer
The preferred way to install this extension is through composer.
Either run
php composer require sankam/yii2-maintenance "*"
Or, you may add
"sankam/yii2-maintenance": "*"
to the require section of your composer.json
file and execute php composer update
.
Install
In your application front config, add the path alias for this extension.
return [ ... 'components' => [ ... 'maintenance' => [ 'class' => 'sankam\maintenance\Maintenance', 'enabled' => true ], ];