-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (24 loc) · 744 Bytes
/
Makefile
File metadata and controls
35 lines (24 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
init: docker-down-clear docker-pull docker-build-pull docker-up app-init
down: docker-down-clear
check: lint analyze test
docker-up:
docker-compose up -d
docker-down-clear:
docker-compose down -v --remove-orphans
docker-pull:
docker-compose pull
docker-build-pull:
docker-compose build --pull
app-init: composer-install
composer-install:
docker-compose run --rm php-cli composer install
composer-update:
docker-compose run --rm php-cli composer update
lint:
docker-compose run --rm php-cli composer php-cs-fixer fix -- --dry-run --diff
cs-fix:
docker-compose run --rm php-cli composer php-cs-fixer fix
analyze:
docker-compose run --rm php-cli composer psalm -- --no-diff
test:
docker-compose run --rm php-cli composer test