From a738b0cac9b51e07940a45024d4c749104896e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 15 Apr 2024 13:22:36 +0200 Subject: [PATCH] Initialize ChillTicketBundle --- composer.json | 1 + .../DependencyInjection/config/routes.yaml | 0 .../DependencyInjection/config/services.yaml | 1 + .../ChillTicketBundle/src/ChillTicketBundle.php | 10 ++++++++++ .../ChillTicketExtension.php | 17 +++++++++++++++++ 5 files changed, 29 insertions(+) create mode 100644 src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/routes.yaml create mode 100644 src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/services.yaml create mode 100644 src/Bundle/ChillTicketBundle/src/ChillTicketBundle.php create mode 100644 src/Bundle/ChillTicketBundle/src/DependencyInjection/ChillTicketExtension.php diff --git a/composer.json b/composer.json index a000d5b3c..928a65292 100644 --- a/composer.json +++ b/composer.json @@ -118,6 +118,7 @@ "Chill\\PersonBundle\\": "src/Bundle/ChillPersonBundle", "Chill\\ReportBundle\\": "src/Bundle/ChillReportBundle", "Chill\\TaskBundle\\": "src/Bundle/ChillTaskBundle", + "Chill\\TicketBundle\\": "src/Bundle/ChillTicketBundle/src", "Chill\\ThirdPartyBundle\\": "src/Bundle/ChillThirdPartyBundle", "Chill\\WopiBundle\\": "src/Bundle/ChillWopiBundle/src", "Chill\\Utils\\Rector\\": "utils/rector/src" diff --git a/src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/routes.yaml b/src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/routes.yaml new file mode 100644 index 000000000..e69de29bb diff --git a/src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/services.yaml b/src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/services.yaml new file mode 100644 index 000000000..0baad4766 --- /dev/null +++ b/src/Bundle/ChillThirdPartyBundle/DependencyInjection/config/services.yaml @@ -0,0 +1 @@ +services: diff --git a/src/Bundle/ChillTicketBundle/src/ChillTicketBundle.php b/src/Bundle/ChillTicketBundle/src/ChillTicketBundle.php new file mode 100644 index 000000000..9bb39e1f9 --- /dev/null +++ b/src/Bundle/ChillTicketBundle/src/ChillTicketBundle.php @@ -0,0 +1,10 @@ +load('services.yml'); + } +}