This document describes various tools used during development of this bundle.
To install the dependencies required for the development and usage of this
library, run composer install through the supplied docker compose setup.
docker compose run --rm phpfpm composer installThe following commands let you test that the code follows the coding standards we decided to adhere to in this project.
docker compose run --rm phpfpm composer coding-standards-checkdocker compose run --rm node yarn install
docker compose run --rm node yarn run coding-standards-checkYou can automatically fix some coding styles issues by running:
docker compose run --rm phpfpm composer coding-standards-apply