(09-03-2019, 11:23 AM)ciadmin Wrote: (09-03-2019, 11:19 AM)tgix Wrote: Anyone more knowledgeable in composer that I am may point me in the right direction how to update a beta4 project to rc. Tried changing the require to 4@rc but no go.
Are you talking about the appstarter, framework or devstarter?
The installation method is relevant to your update.
I followed the instructions from the beta4 and seems like I installed the appstarter. My composer.json:
Code:
{
"name": "codeigniter4/appstarter",
"type": "project",
"description": "CodeIgniter4 starter app",
"homepage": "https://codeigniter.com",
"license": "MIT",
"config": {
"cafile": "/Tangix_Work/my_cacert.pem"
},
"repositories": [
{
"type": "composer",
"url" : "https://packages.morby.tangix.net/"
}
],
"require": {
"php": ">=7.2",
"codeigniter4/framework": "^4@beta",
"tangix/vtxcommon": "dev-master"
},
"require-dev": {
"mikey179/vfsstream": "1.6.*",
"phpunit/phpunit": "^7.0"
},
"scripts": {
"post-update-cmd": [
"@composer dump-autoload"
]
},
"support": {
"forum": "http://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
}
}