From 0ab07545b9d503607bcdf6eb21c74da84fa15eff Mon Sep 17 00:00:00 2001 From: Jesper Kristensen Date: Tue, 8 Oct 2024 14:12:36 +0200 Subject: [PATCH] Update docs/CONTRIBUTING.md Co-authored-by: Jeppe Kuhlmann Andersen <78410897+jekuaitk@users.noreply.github.com> --- docs/CONTRIBUTING.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index efa14d0..218d805 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -5,10 +5,10 @@ This document describes various tools used during development of this library. ## Install To install the dependencies required for the development and usage of this -library, run `composer install` through the supplied Docker Compose. +library, run `composer install` through the supplied docker compose setup. ```shell -dokcer compose run --rm phpfpm composer install +docker compose run --rm phpfpm composer install ``` ## Tests @@ -18,7 +18,7 @@ We use the [PHPUnit](https://phpunit.de/) testing framework. To run tests execute the following command: ```shell -dokcer compose run --rm phpfpm vendor/bin/phpunit --coverage-clover=coverage/unit.xml +docker compose run --rm phpfpm vendor/bin/phpunit --coverage-clover=coverage/unit.xml ``` ## Check coding standards @@ -27,14 +27,14 @@ The following commands let you test that the code follows the coding standards we decided to adhere to in this project. ```shell -dokcer compose run --rm phpfpm composer coding-standards-check +docker compose run --rm phpfpm composer coding-standards-check ``` ### Check Markdown file ```shell -dokcer compose run --rm node yarn install -dokcer compose run --rm node yarn run coding-standards-check +docker compose run --rm node yarn install +docker compose run --rm node yarn run coding-standards-check ``` ## Apply coding standards @@ -42,5 +42,5 @@ dokcer compose run --rm node yarn run coding-standards-check You can automatically fix some coding styles issues by running: ```shell -dokcer compose run --rm phpfpm composer coding-standards-apply +docker compose run --rm phpfpm composer coding-standards-apply ```