From 7ee61c870f401a284fcf4fa8640ab6e75f4c4f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20J=2E=20Garc=C3=ADa=20Lagar?= Date: Mon, 30 Jun 2025 12:29:43 +0200 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f67719a4..9f05172b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ We accept contributions via Pull Requests on [Github](https://github.com/thephpl ## Development -[Docker](https://www.docker.com/) 18.03+ and [Docker Compose](https://github.com/docker/compose) 1.13+ are required for the development environment. +[Docker](https://www.docker.com/) and [Docker Compose](https://github.com/docker/compose) are required for the development environment. ### Building the environment @@ -46,7 +46,7 @@ Make sure your IDE is setup properly, for more information check out the [dedica ### Code linting -This bundle enforces the PSR-2 and Symfony code standards during development by using the [PHP CS Fixer](https://cs.sensiolabs.org/) utility. Before committing any code, you can run the utility to fix any potential rule violations: +This bundle enforces the PSR-2 and Symfony code standards during development by using the [PHP CS Fixer](https://cs.symfony.com/) utility. Before committing any code, you can run the utility to fix any potential rule violations: ```sh dev/bin/php php-cs-fixer fix @@ -57,7 +57,7 @@ dev/bin/php php-cs-fixer fix You can run static anaysis of code using the following command: ```sh -dev/bin/php psalm --shepherd --stats +dev/bin/php phpstan --memory-limit=256M ``` ### Testing