From 88697ae83f5355b9ca2404e6c13675ae9c2a3820 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 5 Aug 2025 11:21:52 +0200 Subject: [PATCH] chore: update dependencies and configure services - bump symfony/security-bundle to ^7.3 in composer.json - enable autoconfigure for Chill\CalendarBundle\Controller services --- composer.json | 2 +- .../Resources/config/services/controller.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8472de45f..842d49fa3 100644 --- a/composer.json +++ b/composer.json @@ -67,7 +67,7 @@ "symfony/property-access": "^7.2", "symfony/property-info": "^7.2", "symfony/routing": "^7.2", - "symfony/security-bundle": "^7.2", + "symfony/security-bundle": "^7.3", "symfony/security-core": "^7.2", "symfony/security-csrf": "^7.2", "symfony/security-http": "^7.2", diff --git a/src/Bundle/ChillCalendarBundle/Resources/config/services/controller.yml b/src/Bundle/ChillCalendarBundle/Resources/config/services/controller.yml index a0457c5a8..cce562d7d 100644 --- a/src/Bundle/ChillCalendarBundle/Resources/config/services/controller.yml +++ b/src/Bundle/ChillCalendarBundle/Resources/config/services/controller.yml @@ -1,5 +1,6 @@ services: Chill\CalendarBundle\Controller\: autowire: true + autoconfigure: true resource: '../../../Controller' tags: ['controller.service_arguments']