-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (27 loc) · 782 Bytes
/
Makefile
File metadata and controls
31 lines (27 loc) · 782 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
up:
docker-compose up -d
down:
docker-compose down
stop:
docker-compose stop
build:
docker-compose build
remove:
docker-compose down --rmi='local' --volumes
vendor-install:
docker-compose exec api-test-server composer install
vendor-update:
docker-compose exec api-test-server composer update
vendor-update-dry-run:
docker-compose exec api-test-server composer update --dry-run
code-style:
docker-compose exec api-test-server bin/phpcbf src
mess-detector:
docker-compose exec api-test-server bin/phpmd src ansi ./ruleset.xml
static-analysis:
docker-compose exec api-test-server bin/phpstan analyse
test-unit:
docker-compose exec api-test-server bin/codecept run unit
test: code-style static-analysis test-unit
install: build up vendor-install
uninstall: down remove