How to install Laravel 5.0(如何安装 Laravel 5.0)
问题描述
我在启动和运行 Laravel 5.0 的测试实例时遇到问题,因此我可以协助完成此转换.
1) 从 https://github.com/laravel/laravel/tree 创建一个新应用/develop 在运行 composer install 时会导致以下错误.
{错误":{"type":"ErrorException","message":"未定义索引:时区","文件":"/Projects/indatus/dispatcher-test-app/vendor/laravel/framework/src/Illuminate/Foundation/start.php",线":167}}{错误":{"type":"ErrorException","message":"未定义索引:时区","文件":"/Projects/indatus/dispatcher-test-app/vendor/laravel/framework/src/Illuminate/Foundation/start.php",线":167}}
我是不是完全遗漏了什么?
更新:这个问题/答案仅在 Laravel 5 处于开发阶段时才相关.您现在应该参考 Laravel 文档 了解如何安装 Laravel
由于 Laravel 5 已经是最终版本,要安装它,你应该运行
composer create-project laravel/laravel test-laravel-5-project --prefer-dist
在您的控制台中.test-laravel-5-project
是你的项目名称,你可以随意调用它 - 例如 myblog、myapp 等.Laravel 文件将放在这个目录中
您也可以使用替代方法
composer global require "laravel/installer=~1.1"
然后运行
laravel new test-laravel-5-project
有关详细信息,您应该查看官方 Laravel 安装说明
<小时>以下答案仅出于历史原因保留,并且在 Laravel 5 仍处于开发阶段时有效.你现在应该只使用上面提到的方法
我刚刚对此进行了测试,有两种安装 Laravel 5 的方法:
一步法
你只需运行:
composer create-project laravel/laravel test-laravel-5-project dev-develop --prefer-dist
和 composer 将创建整个目录结构.在上面的命令中 test-laravel-5-project
是你的项目名称 - 你当然可以随意命名(composer 将使用这个名称创建目录并将所有 Laravel5 文件放在这个目录中)>
多步法
- 使用选项
下载https://github.com/laravel/laravel/tree/develop下载邮政编码
- 解压到web目录
- 在解压 ZIP 文件的目录中运行
composer update
(不是composer install
)
在浏览器中为项目运行 URL 时使用这两种方法(例如 http://localhost/projects/test-laravel-5-project/public
,具体取决于您的网络服务器设置)将获得标准的 Laravel 网站 您已经到达.
这两种方法都应该很好用.试一试,选择最适合您的那个.
I'm having trouble getting a test instance of Laravel 5.0 up and running so I can assist with this transition.
1) Creating a new app from https://github.com/laravel/laravel/tree/develop leads to the following error when running composer install
.
{"error":
{"type":"ErrorException",
"message":"Undefined index: timezone",
"file":"/Projects/indatus/dispatcher-test-app/vendor/laravel/framework/src/Illuminate/Foundation/start.php",
"line":167}
}
{"error":
{"type":"ErrorException",
"message":"Undefined index: timezone",
"file":"/Projects/indatus/dispatcher-test-app/vendor/laravel/framework/src/Illuminate/Foundation/start.php",
"line":167}}
Am I completely missing something?
UPDATE: This question/answer was only relevant when Laravel 5 was in the development stage. You should now reference the Laravel Documentation for how to install Laravel
As Laravel 5 is already final release, to install it, you should run
composer create-project laravel/laravel test-laravel-5-project --prefer-dist
in your console. test-laravel-5-project
is the name of your project you can call it anyway you want - for example myblog, myapp etc. Laravel files will be put inside this directory
You can also use alternative method using
composer global require "laravel/installer=~1.1"
and then running
laravel new test-laravel-5-project
For detailed info you should look at official Laravel installation notes
The below answer is being kept only for historical reasons and it was valid when Laravel 5 still was in its development stages. You should now only use the method mentioned above
I've just tested this and there are two ways of installing Laravel 5:
One-step method
You just run:
composer create-project laravel/laravel test-laravel-5-project dev-develop --prefer-dist
and composer will create the whole directory structure. In above command test-laravel-5-project
is your project name - you can of course name it as you want (composer will create directory with this name and put all Laravel5 files inside this directory)
Multi-step method
- Download https://github.com/laravel/laravel/tree/develop with option
Download ZIP
- Unpack it in web directory
- Run
composer update
(notcomposer install
) in directory where you unpacked your ZIP file
Using both methods when you run URL for your project in the browser (for example http://localhost/projects/test-laravel-5-project/public
depending on your webserver settings ) you will get standard Laravel website You have arrived.
Both methods should work well. Give either one a try, whichever works best for you.
这篇关于如何安装 Laravel 5.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何安装 Laravel 5.0
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01