From 4fd801bb7af68cdc0a47530a8d58577b424907bc Mon Sep 17 00:00:00 2001 From: Howriq Date: Fri, 12 Dec 2025 12:42:44 +0200 Subject: [PATCH 1/2] mention composer update Signed-off-by: Howriq --- docs/book/v1/chapter-1.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/book/v1/chapter-1.md b/docs/book/v1/chapter-1.md index 0de7a2d..49d24af 100644 --- a/docs/book/v1/chapter-1.md +++ b/docs/book/v1/chapter-1.md @@ -39,6 +39,16 @@ It simplifies wiring Doctrine EntityManager, DBAL, configuration, and related se An extension for PHPStan that improves static analysis for Doctrine. It understands entity metadata, repositories, and common Doctrine patterns, helping catch errors during development. +### Update Composer Dependencies + +Run the following command to install the new required packages: + +```shell +composer update +``` + +This should be run whenever we change anything in our `composer.json` file. + ## Setting Up Doctrine After successfully installing our dependencies, we now need to configure our Doctrine instance. From 752f38f1d63ef7156b2f2bc9e67415506f9ee3c2 Mon Sep 17 00:00:00 2001 From: Howriq Date: Fri, 12 Dec 2025 12:45:02 +0200 Subject: [PATCH 2/2] mention composer update Signed-off-by: Howriq --- docs/book/v1/chapter-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/v1/chapter-1.md b/docs/book/v1/chapter-1.md index 49d24af..9f27f4a 100644 --- a/docs/book/v1/chapter-1.md +++ b/docs/book/v1/chapter-1.md @@ -47,7 +47,7 @@ Run the following command to install the new required packages: composer update ``` -This should be run whenever we change anything in our `composer.json` file. +The command should be run whenever we change anything in our `composer.json` file. ## Setting Up Doctrine