![]() |
upgrading CI3 versions - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: upgrading CI3 versions (/showthread.php?tid=61274) |
upgrading CI3 versions - frocco - 04-06-2015 Hello, When changes occur in CI3, do I just use composer update to get latest? RE: upgrading CI3 versions - s4if - 04-06-2015 no, codeigniter isn't installed by composer. if you wanna upgrade, you can get archived copy in codeigniter's website and replace your index, system and application/config files in your apps. there are detailed instructions in codeigniter's user guide. please take your time to check it.. ![]() RE: upgrading CI3 versions - frocco - 04-06-2015 ok, thank you RE: upgrading CI3 versions - Narf - 04-07-2015 There's nothing stopping you from installing or updating CI via Composer. RE: upgrading CI3 versions - codinghamster - 04-08-2015 (04-07-2015, 02:45 AM)Narf Wrote: There's nothing stopping you from installing or updating CI via Composer. That is very true. Back in the day it was really easy to put Code: "codeigniter/framework": "dev-develop" However now, when we have 3.0 released, it is impossible to stick with stable 3.0 version like this: Code: "codeigniter/framework": "~3.0" Is it possible to set the versions on packagist as they are on github? It would be really convenient. |