Issue
How can I Prevent my application from upgrading to Laravel 5.4 when I run composer update.
Thanks for any assistance.
Solution
If you want to work on dev branch of the 5.3 version you should change dependency in your Laravel's composer.json
:
"require": {
...
"laravel/framework": "5.3.*@dev",
...
},
where @dev
points the development feature branch of 5.3.*.
Answered By - Filip KoblaĆski
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.