gmlo/cms
Composer 安装命令:
composer require gmlo/cms
包简介
Reactor CMS with Laravel 5.1
README 文档
README
Its a PHP CMS powered by Laravel 5.1, ideal for small websites that require a blog
##Modules included:
- Users (CRUD, Auth)
- Categories (CRUD)
- Articles (CRUD)
Version
This package is still under construction... But you can download and collaborate
Installation
First, pull in the package through Composer.
“require”: {
...
"gmlo/cms": "dev-master”
}
And run composer:
$ composer update
And then, include the service provider within config/app.php.
'providers' => [ ... // own Gmlo\CMS\Providers\CMSServiceProvider::class, // Required Collective\Html\HtmlServiceProvider::class, ], .... 'aliases' => [ ... // Custom 'CMS' => Gmlo\CMS\Facades\CMS::class, 'Field' => Gmlo\CMS\Facades\FieldBuilder::class, 'Alert' => Gmlo\CMS\Facades\Alert::class, 'MediaManager' => Gmlo\CMS\Facades\MediaManager::class, // Required 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, ],
Configure your preference database.
Configure the CMS
$ php artisan cms:start
Run this command and type the required data.
Make sure update the auth.php config file with the User Model of the CMS.
'model' => \Gmlo\CMS\Modules\Users\User::class,
Also you can set more configurations on config/cms.php.
Enjoy it!
Go to the web browser and put your-domain/admin.
Credits
This package uses a number of open source projects to work properly:
- Laravel 5.1 - The PHP Framework For Web Artisans
- AdminLTE - Dashboard & Control Panel Template
- VueJS - Intuitive, Fast and Composable MVVM for building interactive interfaces.
- TinyMCE - HTML WYSIWYG editor
- And others...
Development
By @gmlo_89
Feel free to contrinue and post your feedback!
统计信息
- 总下载量: 301
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-03