roelofjan-elsinga / flat-file-cms-gui
1.0.0
2020-03-18 14:58 UTC
Requires
- php: >=7.1.3
- genealabs/laravel-caffeine: ^0.8.3
- gumlet/php-image-resize: ^1.9
- illuminate/http: ^5.8
- illuminate/support: ^5.8
- illuminate/view: ^5.8
- laravelcollective/html: ^5.8
- rbdwllr/reallysimplejwt: ^2.0
- roelofjan-elsinga/aloia-cms: ^1.0
- roelofjan-elsinga/aloia-cms-publish: ^1.0
Requires (Dev)
- brainmaestro/composer-git-hooks: ^2.7
- friendsofphp/php-cs-fixer: ^2.15
- mikey179/vfsstream: ^1.6
- orchestra/testbench: ^3.8
- phpunit/phpunit: ^8.3
- dev-master
- 1.0.0
- 0.13.0
- 0.12.1
- 0.12.0
- 0.11.6
- 0.11.5
- 0.11.4
- 0.11.3
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.5
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.1
- 0.8.0
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.1
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.3
- 0.3.2
- 0.3.1
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.2
- 0.1.1
- 0.1.0
- dev-dependabot/npm_and_yarn/acorn-5.7.4
- dev-cms-upgrade
This package is auto-updated.
Last update: 2020-03-18 15:00:35 UTC
README
这是Flat File CMS包的官方图形用户界面(GUI)。此包包括Flat File CMS的最新版本、身份验证、用户创建、媒体管理和在清晰的视觉网络环境中管理Flat File CMS包所使用的数据的能力。
安装
您可以通过Composer使用此包
composer require roelofjan-elsinga/flat-file-cms-gui
如果您想自定义此包使用的任何默认设置,可以发布配置
php artisan vendor:publish --provider="AloiaCms\\GUI\\ServiceProvider"
这将在您的配置文件夹中创建一个aloiacmsgui.php
之后,您需要运行以下命令来发布此包的资产
php artisan aloiacmsgui:publish:assets
这将把仪表板的资产放置在public/vendor/aloiacmsgui
中。
创建用户
您可以通过运行以下命令来创建用户
php artisan aloiacmsgui:create:account --username=yourusername --password=yourpassword
之后,您可以使用凭据登录。
编辑器
默认情况下,此包包含两个编辑器:CKEditor用于HTML页面,InscrybMDE用于Markdown页面。
您可以通过覆盖视图来自定义HTML和Markdown页面使用的编辑器。
测试
您可以通过在终端运行./vendor/bin/phpunit
来运行包含的测试。