Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 760 Bytes

app.md

File metadata and controls

41 lines (30 loc) · 760 Bytes

Application documentation

Install in Docker Container

docker-compose exec -u $(id -u):$(id -g) app composer install

Check application

docker-compose exec -u $(id -u):$(id -g) app composer check

Test Project Code health with composer check

log in container
docker-compose exec -u $(id -u):$(id -g) app bash
all checks at once

composer check

run check only once at a time
only code style check

composer cs-check

code style fixing

composer cs-fix

code static type check

composer analyse

run automated tests

composer test