我在哪里可以找到 symfony 2.7 的超链接
Where can i find a hyperlink to symfony 2.7
我无法下载 zip 文件 symfony2.7。网站上的 link 不起作用。有谁知道为什么?我在哪里可以找到 symfony 2.7-zip 文件?我在互联网上的某个地方找到了一个旧版本,但我真的很想要最新的稳定版本。
使用 symfony 安装程序,如其网站上所述 here
剪断
Linux and Mac OS X Systems:
Open your command console and execute the
following commands:
sudo curl -LsS http://symfony.com/installer -o /usr/local/bin/symfony
sudo chmod a+x /usr/local/bin/symfony
This will create a global symfony command in your system.
Windows Systems:
Open your command console and execute the following
command:
c:\> php -r "readfile('http://symfony.com/installer');" > symfony
Then, move the downloaded symfony file to your project's directory and
execute it as follows:
c:\> move symfony c:\projects c:\projects\> php symfony
剪断
然后您可以使用它来安装特定版本
symfony new my_project_name 2.x.x
我以前总是通过或通过创建项目命令来安装它:
composer create-project symfony/framework-standard-edition project_name
如果你想要 2.7 版本
composer create-project symfony/framework-standard-edition project_name '2.7.*'
如果在写这篇文章的时候没有2.7稳定版,你需要把稳定性降到dev:
composer create-project symfony/framework-standard-edition project_name '2.7.*' -s dev
-s(--稳定性。)
如果你真的必须有一个 zip : https://github.com/symfony/symfony-standard/archive/2.7.zip
此外,简单的搜索会显示 this
这是我得到这个答案表的地方..所以是的,下次使用搜索...
我无法下载 zip 文件 symfony2.7。网站上的 link 不起作用。有谁知道为什么?我在哪里可以找到 symfony 2.7-zip 文件?我在互联网上的某个地方找到了一个旧版本,但我真的很想要最新的稳定版本。
使用 symfony 安装程序,如其网站上所述 here
剪断
Linux and Mac OS X Systems:
Open your command console and execute the following commands:
sudo curl -LsS http://symfony.com/installer -o /usr/local/bin/symfony
sudo chmod a+x /usr/local/bin/symfony
This will create a global symfony command in your system.
Windows Systems:
Open your command console and execute the following command:
c:\> php -r "readfile('http://symfony.com/installer');" > symfony
Then, move the downloaded symfony file to your project's directory and execute it as follows:
c:\> move symfony c:\projects c:\projects\> php symfony
剪断
然后您可以使用它来安装特定版本
symfony new my_project_name 2.x.x
我以前总是通过或通过创建项目命令来安装它:
composer create-project symfony/framework-standard-edition project_name
如果你想要 2.7 版本
composer create-project symfony/framework-standard-edition project_name '2.7.*'
如果在写这篇文章的时候没有2.7稳定版,你需要把稳定性降到dev:
composer create-project symfony/framework-standard-edition project_name '2.7.*' -s dev
-s(--稳定性。)
如果你真的必须有一个 zip : https://github.com/symfony/symfony-standard/archive/2.7.zip
此外,简单的搜索会显示 this
这是我得到这个答案表的地方..所以是的,下次使用搜索...