##Yee CMS - Page Module
####Backend module for managing pages
This module is part of Yee CMS (based on Yii2 Framework).
Page module lets you easily create static pages on your site.
-
Install Yee Media Module if it is not installed yet.
-
Either run
composer require --prefer-dist yeesoft/yii2-yee-page "*"
or add
"yeesoft/yii2-yee-page": "*"
to the require section of your composer.json
file.
- Run migrations
yii migrate --migrationPath=@vendor/yeesoft/yii2-yee-page/migrations/
- In your backend config file
'modules'=>[
'page' => [
'class' => 'yeesoft\page\PageModule',
],
],