PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, February 19, 2022

[FIXED] How not upgrade to Laravel 5.4 when I run composer update

 February 19, 2022     composer-php, laravel     No comments   

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
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing