- Install php composer.
- select project file where we want to download php lib files
- make composer.json file
it contain list of php dependency to be install
- in cmd run
composer install
- this commands first check for composer.lock file for php dependency check if notexist it go for composer.json file
- and from composer.json it will download latest file mention there.
- then fnally update or create composer.lock file with lates version of php dependency used.
- select project file where we want to download php lib files
- make composer.json file
it contain list of php dependency to be install
- in cmd run
composer install
- this commands first check for composer.lock file for php dependency check if notexist it go for composer.json file
- and from composer.json it will download latest file mention there.
- then fnally update or create composer.lock file with lates version of php dependency used.