diff --git a/Makefile b/Makefile index 8090e9c..be62ac7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,11 @@ composer := docker-compose run --rm composer-package-testing composer -d app +install: + @$(composer) install + +prune: + @docker-compose rm -fsv + code-style-fix: @$(composer) code-style-fix @@ -13,4 +19,4 @@ run-unit-tests: @$(composer) run-unit-tests full-test: - @$(composer) full-test \ No newline at end of file + @$(composer) full-test diff --git a/README.md b/README.md index 4e68053..527b227 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ Template for composer packages with CI and a Docker image for local development. Commands -------- +### Install dependencies +```bash +make install +``` ### Сode style fixer ```bash @@ -34,4 +38,8 @@ make run-unit-tests ### Run full test ```bash make full-test +``` +### Remove all docker data +```bash +make prune ``` \ No newline at end of file