Symfony 3.0 installation

前端 未结 1 900
梦谈多话
梦谈多话 2020-12-16 12:18

Am new to symfony and from last month am continuously installing new symfony project using following command on ubuntu from the terminal

# Linux, Mac OS X
$          


        
相关标签:
1条回答
  • 2020-12-16 13:13

    It is a resolved issue that you need to specify the version you want to install. As described here and here, you need to:

    1. Update your installer

      >symfony self-update
      

      or with sudo, depending on how you install it:

      >sudo symfony self-update
      
    2. Specify the version:

      >symfony new my_project_name 3.0
      

    Hope this helps.

    UPDATE

    With the correct resolutions of the bug on the Symfony installer, now the 3.0 is the default version. In other case, you can specify the complete version (with minor and major) as follows:

    >symfony new my_project_name 3.0.0
    
    0 讨论(0)
提交回复
热议问题