samgan-khan / cristeena
此软件包已被 弃用 且不再维护。未建议替代软件包。
基于 CakePHP 的后端仪表板模板。
v1.1.1
2019-08-02 10:48 UTC
Requires
- php: >=5.6
- cakephp/cakephp: 3.6.*
- cakephp/migrations: @stable
- cakephp/plugin-installer: ^1.0
- josegonzalez/dotenv: 3.*
- mobiledetect/mobiledetectlib: 2.*
Requires (Dev)
- cakephp/bake: ^1.1
- cakephp/cakephp-codesniffer: ^3.0
- cakephp/debug_kit: ^3.15.0
- psy/psysh: @stable
Suggests
- dereuromark/cakephp-ide-helper: After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan compatibility.
- markstory/asset_compress: An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.
- phpunit/phpunit: Allows automated tests to be run without system-wide install.
This package is auto-updated.
Last update: 2022-06-22 20:58:07 UTC
README
使用 CakePHP 3.x 创建后端应用程序的框架。包含3个不同角色的基本用户模块。
框架源代码在此处可找到: samgan-khan/cristeena。
演示
在此查看 演示
安装
- 下载 Composer 或更新
composer self-update
。 - 运行
php composer.phar create-project --prefer-dist samgan-khan/cristeena [app_name]
。
如果全局安装了 Composer,则运行
composer create-project --prefer-dist samgan-khan/cristeena
如果您想使用自定义的应用目录名称(例如 /myapp/
)
composer create-project --prefer-dist samgan-khan/cristeena myapp
现在,您可以使用机器的 web 服务器查看默认主页,或者使用以下命令启动内置 web 服务器
bin/cake server -p 8765
然后访问 https://:8765
查看欢迎页面。
更新
由于此框架是一个应用程序的起点,并且各种文件根据您的需求进行了修改,因此无法提供自动升级,您必须手动进行任何更新。
配置
阅读并编辑 config/app.php
并设置 'Datasources'
和任何与您的应用程序相关的其他配置。
布局
应用程序框架默认使用 CakePHP 3.x 框架。
文档
有关详细文档,请访问 此处