Install Older Version of Laravel using Composer

前端 未结 5 1095
心在旅途
心在旅途 2020-12-13 13:00

How do I install older version of Laravel framework using composer? The current version is 4.1 and I want to install Laravel 4.0.

5条回答
  •  佛祖请我去吃肉
    2020-12-13 13:19

    Finally it works, I just did four things:

    composer create-project laravel/laravel mobilebanking 4.0

    Change "dev" to "stable" in composer.json

    Then run

    composer self-update

    After that, run this command

    composer update --no-scripts

提交回复
热议问题