Skip to content

Commit 85fe810

Browse files
committed
Updated
1 parent a269bd4 commit 85fe810

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ below to run the checks locally.
2121
### PHP
2222

2323
```shell
24-
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.1-fpm composer install
24+
# Update to make sure that we use the latest versions of tools.
25+
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.3-fpm composer update
2526
# Fix (some) coding standards issues
26-
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.1-fpm composer coding-standards-apply
27+
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.3-fpm composer coding-standards-apply
2728
# Check that code adheres to the coding standards
28-
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.1-fpm composer coding-standards-check
29+
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.3-fpm composer coding-standards-check
2930
```
3031

3132
### Markdown
3233

3334
```shell
35+
docker pull peterdavehello/markdownlint
3436
docker run --rm --volume $PWD:/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md '**/*.md' --fix
3537
docker run --rm --volume $PWD:/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md '**/*.md'
3638
```
@@ -43,5 +45,5 @@ Running statis code analysis on a standalone Drupal module is a bit tricky, so w
4345
analysis:
4446

4547
```shell
46-
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.1-fpm ./scripts/code-analysis
48+
docker run --rm --volume ${PWD}:/app --workdir /app itkdev/php8.3-fpm ./scripts/code-analysis
4749
```

0 commit comments

Comments
 (0)