From 5ffa945a84c0ab3e89c9c1f848161ac68461eb54 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Wed, 27 Aug 2025 17:00:49 +0200 Subject: [PATCH] Remove Symfony and ChampsLibres folders --- composer.json | 2 - .../DependencyInjection/Configuration.php | 37 ------------------- src/Kernel.php | 11 ------ .../ContainerAwareTrait.php | 25 ------------- 4 files changed, 75 deletions(-) delete mode 100644 src/ChampsLibres/WopiBundle/DependencyInjection/Configuration.php delete mode 100644 src/Kernel.php delete mode 100644 src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php diff --git a/composer.json b/composer.json index 941ceea72..9d02164e1 100644 --- a/composer.json +++ b/composer.json @@ -115,8 +115,6 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "src/Symfony/Component/DependencyInjection", - "ChampsLibres\\WopiBundle\\": "src/ChampsLibres/WopiBundle", "Chill\\ActivityBundle\\": "src/Bundle/ChillActivityBundle", "Chill\\AsideActivityBundle\\": "src/Bundle/ChillAsideActivityBundle/src", "Chill\\BudgetBundle\\": "src/Bundle/ChillBudgetBundle", diff --git a/src/ChampsLibres/WopiBundle/DependencyInjection/Configuration.php b/src/ChampsLibres/WopiBundle/DependencyInjection/Configuration.php deleted file mode 100644 index 4f8d4c267..000000000 --- a/src/ChampsLibres/WopiBundle/DependencyInjection/Configuration.php +++ /dev/null @@ -1,37 +0,0 @@ -getRootNode(); - - /** @phpstan-ignore-next-line */ - $rootNode - ->children() - ->scalarNode('server')->end() - ->enumNode('version_management')->values(['version', 'timestamp']) - ->info('Manager document versioning through version (Office 365) or last modified time (Collabora Online, CODE, etc.)') - ->defaultValue('timestamp') - ->end() - ->booleanNode('enable_lock')->defaultTrue()->end() - ->end(); - - return $treeBuilder; - } -} diff --git a/src/Kernel.php b/src/Kernel.php deleted file mode 100644 index 779cd1f2b..000000000 --- a/src/Kernel.php +++ /dev/null @@ -1,11 +0,0 @@ -container = $container; - } -}