Work on master branch. Then rebase php-5.6 branch on master:
$ git checkout php-5.6
$ git rebase master
# maybe fix merge issue and do a git add (no git commit)
# and continue with git rebase --continue
$ git push -f
$ git checkout master
npm install → yarn
npm install --save <name> → yarn add <name>
# install the defined dependencies for the project
$ composer install
# if composer.lock exists fetch the latest matching versions
$ composer update
-
Composer - Composer is a tool for dependency management in PHP. It is not a package manager in the same sense as Yum or Apt are. Instead it manages "packages" or library dependencies on a per-project basis, installing them in a directory (e.g. vendor) inside your project.
-
Testing in PHP
-
Other docker laravel stuff