问题描述
我需要以旧版的上传 - 解压缩方式安装CakePHP 3。
I need to install CakePHP 3 in an old-fashioned upload-unzip-run way.
不包含默认文件夹,例如 webroot
, Model
等,这意味着它不完整。
The archive I've downloaded from cakephp/cakephp/tags does not contain the default folders like webroot
, Model
etc., which means it's not complete.
不包含此内容。 ,它似乎包括那些丢失的文件,但它没有在 cakephp / cakephp
的composer.json,即使我下载它,我不知道如何合并包。
There's also cakephp/app and it seems to include those missing files, but it's not mentioned in cakephp/cakephp
's composer.json, and even if I download it I've no idea how to merge the packages.
请帮助
推荐答案
包装应用程式( cakephp / app
)包含所有依赖的版本(framework( cakephp / cakephp
),标准CakePHP插件( cakephp / debugkit
,<$ c
Packaged app (cakephp/app
) releases that include all dependencies (framework (cakephp/cakephp
), standard CakePHP plugins (cakephp/debugkit
, cakephp/bake
, etc), required third party libraries) can be found on GitHub.
https://github.com/cakephp/cakephp/releases
这是使用小包符号的下载,命名为 cake-3-xx.zip
。
It's the download with the small package symbol, named like cake-3-x-x.zip
.
,这不是一个好主意,使依赖管理器,因为保持代码库和自动装载机更新将是相当乏味,没有进攻,我有怀疑,你会能够正确处理这个问题你甚至不知道如何将应用程序和蛋糕包装在一起。
However, it isn't a good idea to ditch the dependency manager, as keeping the code base and the autoloader up to date will be rather tedious, and, no offense, I have my doubts that you'll be able to handle this properly if you don't even know how to stitch the app and cake packages together.
这篇关于手动安装cakephp 3,没有作曲家的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!