diff --git a/README.md b/README.md index 0ed3ba42..ff1d0b4d 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,63 @@ Symfony Flex, it's much quicker! :) 4. Override repositories - As shown [here](tests/Application/Doctrine/ORM) - and [here](tests/Application/config/packages/_sylius.yaml). + 1. Create repository classes + ```bash + mkdir src/Repository + touch src/Repository/CustomerRepository.php + touch src/Repository/ProductVariantRepository.php + ``` + 2. Paste the following content to the `src/Repository/CustomerRepository.php`: + ```php +