We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86abd47 commit aa54c30Copy full SHA for aa54c30
2 files changed
Configuration/Services.php
@@ -0,0 +1,22 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of the "codehighlight" extension for TYPO3 CMS.
5
+ *
6
+ * For the full copyright and license information, please read the
7
+ * LICENSE.txt file that was distributed with this source code.
8
+ */
9
10
+use Symfony\Component\DependencyInjection\ContainerBuilder;
11
+use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
12
13
+return static function (ContainerConfigurator $configurator, ContainerBuilder $builder): void {
14
+ $services = $configurator->services();
15
16
+ $services->defaults()
17
+ ->autowire()
18
+ ->autoconfigure();
19
20
+ $services
21
+ ->load('Brotkrueml\CodeHighlight\\', __DIR__ . '/../Classes/*');
22
+};
Configuration/Services.yaml
0 commit comments