Installing specific laravel version with composer create-project

后端 未结 7 1152
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-28 03:23

The fastest and simplest way of installing Laravel is via composer command. From the laravel docs (http://laravel.com/docs/quick), it shows that we can install it with this:

相关标签:
7条回答
  • 2020-11-28 04:19

    If you want to use a stable version of your preferred Laravel version of choice, use:

    composer create-project --prefer-dist laravel/laravel project-name "5.5.*"
    

    That will pick out the most recent or best update of version 5.5.* (5.5.28)

    0 讨论(0)
提交回复
热议问题