/laravel

Dockerhub - dreipro/laravel

Primary LanguageShell

laravel by dreipro

Locations

Howto

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

Yarn

npm install → yarn

npm install --save <name> → yarn add <name>

Appendix

# install the defined dependencies for the project
$ composer install

# if composer.lock exists fetch the latest matching versions
$ composer update

Links