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; - } -}