From 9bd1ff142bed5cae4cd206db2ab2c38ef0b88695 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sat, 19 Nov 2022 20:35:30 +0100 Subject: [PATCH] add documentation --- UPGRADE.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/UPGRADE.md b/UPGRADE.md index b76ee73..2195d97 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -11,6 +11,25 @@ Build: ## [Unreleased] +## Upgrade to v1.17.0 + +Replace all annotations with PHP8 attributes and change the doctrine configuration: + +``` +# config/packages/doctrine.yaml +doctrine: + ... + orm: + ... + mappings: + App\Core\Entity: + type: attribute + ... + App\Entity: + type: attribute + ... +``` + ## Upgrade to v1.15.0 ```