From 565be231329c412e2d1f45ec0330e22bacbf5cdc Mon Sep 17 00:00:00 2001 From: theUniC Date: Sun, 10 Apr 2022 19:36:15 +0200 Subject: [PATCH] =?UTF-8?q?README.md=20=E2=9D=A4=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ade73df..5f54578 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,13 @@ Do you want to know more? Do you want to grasp further details about **CQRS**? ## Code Structure -TBC +All the code follows a typical PHP application layout: All the code lives in the `src` folder and classes map 1:1 with the file where they live, following the [PSR-4](https://www.php-fig.org/psr/psr-4/) standard for class autoloading. + +### The `App` namespace + +This namespace contains all the classes that are specific to the delivery mechanism. In this case the delivery mechanism is the [Symfony framework](https://symfony.com/) following the recommended structure. + +### The `Cheeper` namespace ## Running the application