From 670ded8ad413e06559342443fb78c8858c828819 Mon Sep 17 00:00:00 2001 From: Joost de Bruijn Date: Mon, 26 Feb 2024 08:58:15 +0100 Subject: [PATCH] feat: add packages required for serialization (#560) * feat: add packages required for serialization * fix: dependencies must be equal to the root dependencies --- composer.json | 2 ++ src/metadata-service/composer.json | 2 ++ src/symfony/composer.json | 2 ++ 3 files changed, 6 insertions(+) diff --git a/composer.json b/composer.json index 06613f3f..d9cb8ecf 100644 --- a/composer.json +++ b/composer.json @@ -62,6 +62,8 @@ "symfony/framework-bundle": "^6.1|^7.0", "symfony/http-client": "^6.1|^7.0", "symfony/psr-http-message-bridge": "^2.1|^6.1|^7.0", + "symfony/property-access": "^6.1|^7.0", + "symfony/property-info": "^6.1|^7.0", "symfony/security-bundle": "^6.1|^7.0", "symfony/security-core": "^6.1|^7.0", "symfony/security-http": "^6.1|^7.0", diff --git a/src/metadata-service/composer.json b/src/metadata-service/composer.json index b3522198..d9881b7e 100644 --- a/src/metadata-service/composer.json +++ b/src/metadata-service/composer.json @@ -45,6 +45,8 @@ }, "suggest": { "symfony/serializer": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", + "symfony/property-access": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", + "symfony/property-info": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", "phpdocumentor/reflection-docblock": "As of 4.5.x, the phpdocumentor/reflection-docblock component will become mandatory for converting objects such as the Metadata Statement", "psr/clock-implementation": "As of 4.5.x, the PSR Clock implementation will replace lcobucci/clock", "psr/log-implementation": "Recommended to receive logs from the library", diff --git a/src/symfony/composer.json b/src/symfony/composer.json index a0ed428f..c472fc19 100644 --- a/src/symfony/composer.json +++ b/src/symfony/composer.json @@ -31,6 +31,8 @@ "symfony/framework-bundle": "^6.1|^7.0", "symfony/http-client": "^6.1|^7.0", "symfony/psr-http-message-bridge": "^2.1|^6.1|^7.0", + "symfony/property-access": "^6.1|^7.0", + "symfony/property-info": "^6.1|^7.0", "symfony/security-bundle": "^6.1|^7.0", "symfony/security-core": "^6.1|^7.0", "symfony/security-http": "^6.1|^7.0",