Home >php教程 >php手册 >Laravel(1)-WIN7安装4.2

Laravel(1)-WIN7安装4.2

WBOY
WBOYOriginal
2016-06-06 20:12:431108browse

Laravel是目前最受国外PHP开发者欢迎的MVC框架,当前版本为4.2,PHP版本要求为5.4+。 Laravel通过Composer执行安装和管理依赖,所以要首先安装Composer. 1.安装Composer 官方网址:http://getcomposer.org/ windows安装包地址: http://getcomposer.org/Composer

Laravel是目前最受国外PHP开发者欢迎的MVC框架,当前版本为4.2,PHP版本要求为5.4+。

Laravel通过Composer执行安装和管理依赖,所以要首先安装Composer.

1.安装Composer

官方网址:http://getcomposer.org/

windows安装包地址:

http://getcomposer.org/Composer-Setup.exe

点击安装

composer1

composer2

安装时注意需要指定php.exe的位置

2.开启php_openssl扩展

打开php.ini,确认extension=php_openssl.dll 已经开启,PHP5+这一项应该是默认开启的。

3.安装PHP4.2

在网站目录下新建cmds.txt,输入以下内容

@echo off cmd /k

然后更名为cmds.bat并双击运行 注意一定不能命名为cmd.bat 那样会进入死循环 输入

<code>composer create-project laravel/laravel testproject --prefer-dist
testproject</code>就是你的项目名称,不加<code>--prefer-dist的话整个项目会很大
<img alt="cmd1" class="alignnone size-full wp-image-40"    style="max-width:90%" src="http://www.68idc.cn/help/uploads/allimg/150125/0H5593V2-2.jpg"  style="max-width:90%">
之后就会进入安装,安装的速度取决于你连接到github的速度
<img alt="cmd2" class="alignnone size-full wp-image-42"    style="max-width:90%" src="http://www.68idc.cn/help/uploads/allimg/150125/0H5595212-3.jpg"  style="max-width:90%">
如果觉得在线安装太慢 还可以进行手动安装
github地址:https://github.com/laravel/laravel/archive/master.zip
解压后进入目录运行composer install就可以了</code>
<code>更新框架的命令是: </code><code>php composer.phar update</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn