Upgrading Laravel 5.5 to 5.6 error

前端 未结 12 1931
梦如初夏
梦如初夏 2020-12-08 09:38

I am trying to upgrade my Laravel 5.5 to 5.6. I have followed the instructions from the laravel website, yet I got this error:

Your         


        
12条回答
  •  天命终不由人
    2020-12-08 10:25

    Just need to Change fideloper/proxy in composer.json file:-

    Your composer.json file now:-

    "fideloper/proxy": "~3.3",
    

    Change it to ^4.0 somthing like this:-

    "fideloper/proxy": "^4.0",
    

    After that you need to run update composer that's it.

    composer update
    

提交回复
热议问题