symfony 安装

Symfony 2.1.3 安装

参考:http://getcomposer.org/doc/00-intro.md

         http://symfony.com/doc/current/book/installation.html

1. composer

C:\bin>php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));" 
C:\bin>notepad composer.bat
@ECHO OFF
SET composerScript=composer.phar
php "%~dp0%composerScript%" %*

保存,然后执行

C:\bin>composer -V
 可以得到版本信息


2. 创建symfony工程

C:\bin>php composer.phar create-project symfony/framework-standard-edition F:\myarea\sf2 2.1.3

这里大约需要十几分钟。

3.开始干活

//记录待续


你可能感兴趣的:(symfony 安装)