Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 855 Bytes

File metadata and controls

36 lines (24 loc) · 855 Bytes

Contributing

This document describes various tools used during development of this bundle.

Install

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 install

Check coding standards

The 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-check

Check Markdown file

docker compose run --rm node yarn install
docker compose run --rm node yarn run coding-standards-check

Apply coding standards

You can automatically fix some coding styles issues by running:

docker compose run --rm phpfpm composer coding-standards-apply