How to fix composer server sertificate issue

If you get following issue in composer package installation
"server certificate verification failed. CAfile: none CRLfile: none"
Then update certificate using follwing commands

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates -y 
sudo update-ca-certificates
vasan