From f7bc308e8437aa03938dbc46f64ed8f3ef44d7f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 18 Mar 2021 12:46:43 +0100 Subject: [PATCH] Prepare for moving into monorepo --- .gitignore => src/Bundle/ChillReport/.gitignore | 0 .../Bundle/ChillReport/.gitlab-ci.yml | 0 CHANGELOG.md => src/Bundle/ChillReport/CHANGELOG.md | 0 .../Bundle/ChillReport/ChillReportBundle.php | 0 .../ChillReport/Controller}/ReportController.php | 0 .../DataFixtures}/ORM/LoadCustomField.php | 0 .../DataFixtures}/ORM/LoadCustomFieldsGroup.php | 0 .../ChillReport/DataFixtures}/ORM/LoadReportACL.php | 0 .../ChillReport/DataFixtures}/ORM/LoadReports.php | 0 .../DependencyInjection}/ChillReportExtension.php | 0 .../DependencyInjection}/Configuration.php | 0 .../Bundle/ChillReport/Entity}/Report.php | 0 .../ChillReport/Export}/Export/ReportList.php | 0 .../Export}/Export/ReportListProvider.php | 0 .../ChillReport/Export}/Filter/ReportDateFilter.php | 0 .../Bundle/ChillReport/Form}/ReportType.php | 0 LICENSE => src/Bundle/ChillReport/LICENSE | 0 README.md => src/Bundle/ChillReport/README.md | 0 .../Resources}/config/doctrine/Report.orm.yml | 0 .../ChillReport/Resources}/config/routing.yml | 0 .../ChillReport/Resources}/config/services.yml | 0 .../Resources}/config/services/controller.yml | 0 .../Resources}/config/services/export.yml | 0 .../Resources}/config/services/fixtures.yml | 0 .../ChillReport/Resources}/config/validation.yml | 0 .../Resources}/migrations/Version20141129012050.php | 0 .../Resources}/migrations/Version20150622233319.php | 0 .../ChillReport/Resources}/test/Fixtures/.DS_Store | Bin .../Resources}/test/Fixtures/App/app/AppKernel.php | 0 .../Fixtures/App/app/DoctrineMigrations/.gitignore | 0 .../Resources}/test/Fixtures/App/app/autoload.php | 0 .../test/Fixtures/App/app/bootstrap.php.cache | 0 .../test/Fixtures/App/app/config/config.yml | 0 .../test/Fixtures/App/app/config/config_dev.yml | 0 .../test/Fixtures/App/app/config/config_test.yml | 0 .../App/app/config/parameters.gitlab-ci.yml | 0 .../test/Fixtures/App/app/config/parameters.yml | 0 .../Fixtures/App/app/config/parameters.yml.dist | 0 .../test/Fixtures/App/app/config/routing.yml | 0 .../Resources}/test/Fixtures/App/app/console | 0 .../Resources}/test/Fixtures/App/web/.gitignore | 0 .../Resources}/translations/messages.fr.yml | 0 .../Resources}/translations/messages.nl.yml | 0 .../Resources}/views/Report/edit.html.twig | 0 .../Resources}/views/Report/export.csv.twig | 0 .../Resources}/views/Report/list.html.twig | 0 .../Resources}/views/Report/new.html.twig | 0 .../views/Report/select_report_type.html.twig | 0 .../Report/select_report_type_for_export.html.twig | 0 .../Resources}/views/Report/view.html.twig | 0 .../Resources}/views/Search/results.html.twig | 0 .../views/Timeline/report_person_context.html.twig | 0 .../Bundle/ChillReport/Search}/ReportSearch.php | 0 .../Security}/Authorization/ReportVoter.php | 0 .../Tests}/Controller/ReportControllerNextTest.php | 0 .../Tests}/Controller/ReportControllerTest.php | 0 .../ChillReportExtensionTest.php | 0 .../ChillReport/Tests}/Search/ReportSearchTest.php | 0 .../Security/Authorization/ReportVoterTest.php | 0 .../Tests}/Timeline/TimelineProviderTest.php | 0 .../Bundle/ChillReport/Tests}/bootstrap.php | 0 .../Timeline}/TimelineReportProvider.php | 0 apigen.neon => src/Bundle/ChillReport/apigen.neon | 0 .../Bundle/ChillReport/composer.json | 0 console.sh => src/Bundle/ChillReport/console.sh | 0 .../Bundle/ChillReport/phpunit.xml.dist | 0 66 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => src/Bundle/ChillReport/.gitignore (100%) rename .gitlab-ci.yml => src/Bundle/ChillReport/.gitlab-ci.yml (100%) rename CHANGELOG.md => src/Bundle/ChillReport/CHANGELOG.md (100%) rename ChillReportBundle.php => src/Bundle/ChillReport/ChillReportBundle.php (100%) rename {Controller => src/Bundle/ChillReport/Controller}/ReportController.php (100%) rename {DataFixtures => src/Bundle/ChillReport/DataFixtures}/ORM/LoadCustomField.php (100%) rename {DataFixtures => src/Bundle/ChillReport/DataFixtures}/ORM/LoadCustomFieldsGroup.php (100%) rename {DataFixtures => src/Bundle/ChillReport/DataFixtures}/ORM/LoadReportACL.php (100%) rename {DataFixtures => src/Bundle/ChillReport/DataFixtures}/ORM/LoadReports.php (100%) rename {DependencyInjection => src/Bundle/ChillReport/DependencyInjection}/ChillReportExtension.php (100%) rename {DependencyInjection => src/Bundle/ChillReport/DependencyInjection}/Configuration.php (100%) rename {Entity => src/Bundle/ChillReport/Entity}/Report.php (100%) rename {Export => src/Bundle/ChillReport/Export}/Export/ReportList.php (100%) rename {Export => src/Bundle/ChillReport/Export}/Export/ReportListProvider.php (100%) rename {Export => src/Bundle/ChillReport/Export}/Filter/ReportDateFilter.php (100%) rename {Form => src/Bundle/ChillReport/Form}/ReportType.php (100%) rename LICENSE => src/Bundle/ChillReport/LICENSE (100%) rename README.md => src/Bundle/ChillReport/README.md (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/doctrine/Report.orm.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/routing.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/services.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/services/controller.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/services/export.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/services/fixtures.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/config/validation.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/migrations/Version20141129012050.php (100%) rename {Resources => src/Bundle/ChillReport/Resources}/migrations/Version20150622233319.php (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/.DS_Store (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/AppKernel.php (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/DoctrineMigrations/.gitignore (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/autoload.php (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/bootstrap.php.cache (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/config.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/config_dev.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/config_test.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/parameters.gitlab-ci.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/parameters.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/parameters.yml.dist (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/config/routing.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/app/console (100%) rename {Resources => src/Bundle/ChillReport/Resources}/test/Fixtures/App/web/.gitignore (100%) rename {Resources => src/Bundle/ChillReport/Resources}/translations/messages.fr.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/translations/messages.nl.yml (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/edit.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/export.csv.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/list.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/new.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/select_report_type.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/select_report_type_for_export.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Report/view.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Search/results.html.twig (100%) rename {Resources => src/Bundle/ChillReport/Resources}/views/Timeline/report_person_context.html.twig (100%) rename {Search => src/Bundle/ChillReport/Search}/ReportSearch.php (100%) rename {Security => src/Bundle/ChillReport/Security}/Authorization/ReportVoter.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/Controller/ReportControllerNextTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/Controller/ReportControllerTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/DependencyInjection/ChillReportExtensionTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/Search/ReportSearchTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/Security/Authorization/ReportVoterTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/Timeline/TimelineProviderTest.php (100%) rename {Tests => src/Bundle/ChillReport/Tests}/bootstrap.php (100%) rename {Timeline => src/Bundle/ChillReport/Timeline}/TimelineReportProvider.php (100%) rename apigen.neon => src/Bundle/ChillReport/apigen.neon (100%) rename composer.json => src/Bundle/ChillReport/composer.json (100%) rename console.sh => src/Bundle/ChillReport/console.sh (100%) rename phpunit.xml.dist => src/Bundle/ChillReport/phpunit.xml.dist (100%) diff --git a/.gitignore b/src/Bundle/ChillReport/.gitignore similarity index 100% rename from .gitignore rename to src/Bundle/ChillReport/.gitignore diff --git a/.gitlab-ci.yml b/src/Bundle/ChillReport/.gitlab-ci.yml similarity index 100% rename from .gitlab-ci.yml rename to src/Bundle/ChillReport/.gitlab-ci.yml diff --git a/CHANGELOG.md b/src/Bundle/ChillReport/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to src/Bundle/ChillReport/CHANGELOG.md diff --git a/ChillReportBundle.php b/src/Bundle/ChillReport/ChillReportBundle.php similarity index 100% rename from ChillReportBundle.php rename to src/Bundle/ChillReport/ChillReportBundle.php diff --git a/Controller/ReportController.php b/src/Bundle/ChillReport/Controller/ReportController.php similarity index 100% rename from Controller/ReportController.php rename to src/Bundle/ChillReport/Controller/ReportController.php diff --git a/DataFixtures/ORM/LoadCustomField.php b/src/Bundle/ChillReport/DataFixtures/ORM/LoadCustomField.php similarity index 100% rename from DataFixtures/ORM/LoadCustomField.php rename to src/Bundle/ChillReport/DataFixtures/ORM/LoadCustomField.php diff --git a/DataFixtures/ORM/LoadCustomFieldsGroup.php b/src/Bundle/ChillReport/DataFixtures/ORM/LoadCustomFieldsGroup.php similarity index 100% rename from DataFixtures/ORM/LoadCustomFieldsGroup.php rename to src/Bundle/ChillReport/DataFixtures/ORM/LoadCustomFieldsGroup.php diff --git a/DataFixtures/ORM/LoadReportACL.php b/src/Bundle/ChillReport/DataFixtures/ORM/LoadReportACL.php similarity index 100% rename from DataFixtures/ORM/LoadReportACL.php rename to src/Bundle/ChillReport/DataFixtures/ORM/LoadReportACL.php diff --git a/DataFixtures/ORM/LoadReports.php b/src/Bundle/ChillReport/DataFixtures/ORM/LoadReports.php similarity index 100% rename from DataFixtures/ORM/LoadReports.php rename to src/Bundle/ChillReport/DataFixtures/ORM/LoadReports.php diff --git a/DependencyInjection/ChillReportExtension.php b/src/Bundle/ChillReport/DependencyInjection/ChillReportExtension.php similarity index 100% rename from DependencyInjection/ChillReportExtension.php rename to src/Bundle/ChillReport/DependencyInjection/ChillReportExtension.php diff --git a/DependencyInjection/Configuration.php b/src/Bundle/ChillReport/DependencyInjection/Configuration.php similarity index 100% rename from DependencyInjection/Configuration.php rename to src/Bundle/ChillReport/DependencyInjection/Configuration.php diff --git a/Entity/Report.php b/src/Bundle/ChillReport/Entity/Report.php similarity index 100% rename from Entity/Report.php rename to src/Bundle/ChillReport/Entity/Report.php diff --git a/Export/Export/ReportList.php b/src/Bundle/ChillReport/Export/Export/ReportList.php similarity index 100% rename from Export/Export/ReportList.php rename to src/Bundle/ChillReport/Export/Export/ReportList.php diff --git a/Export/Export/ReportListProvider.php b/src/Bundle/ChillReport/Export/Export/ReportListProvider.php similarity index 100% rename from Export/Export/ReportListProvider.php rename to src/Bundle/ChillReport/Export/Export/ReportListProvider.php diff --git a/Export/Filter/ReportDateFilter.php b/src/Bundle/ChillReport/Export/Filter/ReportDateFilter.php similarity index 100% rename from Export/Filter/ReportDateFilter.php rename to src/Bundle/ChillReport/Export/Filter/ReportDateFilter.php diff --git a/Form/ReportType.php b/src/Bundle/ChillReport/Form/ReportType.php similarity index 100% rename from Form/ReportType.php rename to src/Bundle/ChillReport/Form/ReportType.php diff --git a/LICENSE b/src/Bundle/ChillReport/LICENSE similarity index 100% rename from LICENSE rename to src/Bundle/ChillReport/LICENSE diff --git a/README.md b/src/Bundle/ChillReport/README.md similarity index 100% rename from README.md rename to src/Bundle/ChillReport/README.md diff --git a/Resources/config/doctrine/Report.orm.yml b/src/Bundle/ChillReport/Resources/config/doctrine/Report.orm.yml similarity index 100% rename from Resources/config/doctrine/Report.orm.yml rename to src/Bundle/ChillReport/Resources/config/doctrine/Report.orm.yml diff --git a/Resources/config/routing.yml b/src/Bundle/ChillReport/Resources/config/routing.yml similarity index 100% rename from Resources/config/routing.yml rename to src/Bundle/ChillReport/Resources/config/routing.yml diff --git a/Resources/config/services.yml b/src/Bundle/ChillReport/Resources/config/services.yml similarity index 100% rename from Resources/config/services.yml rename to src/Bundle/ChillReport/Resources/config/services.yml diff --git a/Resources/config/services/controller.yml b/src/Bundle/ChillReport/Resources/config/services/controller.yml similarity index 100% rename from Resources/config/services/controller.yml rename to src/Bundle/ChillReport/Resources/config/services/controller.yml diff --git a/Resources/config/services/export.yml b/src/Bundle/ChillReport/Resources/config/services/export.yml similarity index 100% rename from Resources/config/services/export.yml rename to src/Bundle/ChillReport/Resources/config/services/export.yml diff --git a/Resources/config/services/fixtures.yml b/src/Bundle/ChillReport/Resources/config/services/fixtures.yml similarity index 100% rename from Resources/config/services/fixtures.yml rename to src/Bundle/ChillReport/Resources/config/services/fixtures.yml diff --git a/Resources/config/validation.yml b/src/Bundle/ChillReport/Resources/config/validation.yml similarity index 100% rename from Resources/config/validation.yml rename to src/Bundle/ChillReport/Resources/config/validation.yml diff --git a/Resources/migrations/Version20141129012050.php b/src/Bundle/ChillReport/Resources/migrations/Version20141129012050.php similarity index 100% rename from Resources/migrations/Version20141129012050.php rename to src/Bundle/ChillReport/Resources/migrations/Version20141129012050.php diff --git a/Resources/migrations/Version20150622233319.php b/src/Bundle/ChillReport/Resources/migrations/Version20150622233319.php similarity index 100% rename from Resources/migrations/Version20150622233319.php rename to src/Bundle/ChillReport/Resources/migrations/Version20150622233319.php diff --git a/Resources/test/Fixtures/.DS_Store b/src/Bundle/ChillReport/Resources/test/Fixtures/.DS_Store similarity index 100% rename from Resources/test/Fixtures/.DS_Store rename to src/Bundle/ChillReport/Resources/test/Fixtures/.DS_Store diff --git a/Resources/test/Fixtures/App/app/AppKernel.php b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/AppKernel.php similarity index 100% rename from Resources/test/Fixtures/App/app/AppKernel.php rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/AppKernel.php diff --git a/Resources/test/Fixtures/App/app/DoctrineMigrations/.gitignore b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/DoctrineMigrations/.gitignore similarity index 100% rename from Resources/test/Fixtures/App/app/DoctrineMigrations/.gitignore rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/DoctrineMigrations/.gitignore diff --git a/Resources/test/Fixtures/App/app/autoload.php b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/autoload.php similarity index 100% rename from Resources/test/Fixtures/App/app/autoload.php rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/autoload.php diff --git a/Resources/test/Fixtures/App/app/bootstrap.php.cache b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/bootstrap.php.cache similarity index 100% rename from Resources/test/Fixtures/App/app/bootstrap.php.cache rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/bootstrap.php.cache diff --git a/Resources/test/Fixtures/App/app/config/config.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/config.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config.yml diff --git a/Resources/test/Fixtures/App/app/config/config_dev.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config_dev.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/config_dev.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config_dev.yml diff --git a/Resources/test/Fixtures/App/app/config/config_test.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config_test.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/config_test.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/config_test.yml diff --git a/Resources/test/Fixtures/App/app/config/parameters.gitlab-ci.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.gitlab-ci.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/parameters.gitlab-ci.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.gitlab-ci.yml diff --git a/Resources/test/Fixtures/App/app/config/parameters.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/parameters.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.yml diff --git a/Resources/test/Fixtures/App/app/config/parameters.yml.dist b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.yml.dist similarity index 100% rename from Resources/test/Fixtures/App/app/config/parameters.yml.dist rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/parameters.yml.dist diff --git a/Resources/test/Fixtures/App/app/config/routing.yml b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/routing.yml similarity index 100% rename from Resources/test/Fixtures/App/app/config/routing.yml rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/config/routing.yml diff --git a/Resources/test/Fixtures/App/app/console b/src/Bundle/ChillReport/Resources/test/Fixtures/App/app/console similarity index 100% rename from Resources/test/Fixtures/App/app/console rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/app/console diff --git a/Resources/test/Fixtures/App/web/.gitignore b/src/Bundle/ChillReport/Resources/test/Fixtures/App/web/.gitignore similarity index 100% rename from Resources/test/Fixtures/App/web/.gitignore rename to src/Bundle/ChillReport/Resources/test/Fixtures/App/web/.gitignore diff --git a/Resources/translations/messages.fr.yml b/src/Bundle/ChillReport/Resources/translations/messages.fr.yml similarity index 100% rename from Resources/translations/messages.fr.yml rename to src/Bundle/ChillReport/Resources/translations/messages.fr.yml diff --git a/Resources/translations/messages.nl.yml b/src/Bundle/ChillReport/Resources/translations/messages.nl.yml similarity index 100% rename from Resources/translations/messages.nl.yml rename to src/Bundle/ChillReport/Resources/translations/messages.nl.yml diff --git a/Resources/views/Report/edit.html.twig b/src/Bundle/ChillReport/Resources/views/Report/edit.html.twig similarity index 100% rename from Resources/views/Report/edit.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/edit.html.twig diff --git a/Resources/views/Report/export.csv.twig b/src/Bundle/ChillReport/Resources/views/Report/export.csv.twig similarity index 100% rename from Resources/views/Report/export.csv.twig rename to src/Bundle/ChillReport/Resources/views/Report/export.csv.twig diff --git a/Resources/views/Report/list.html.twig b/src/Bundle/ChillReport/Resources/views/Report/list.html.twig similarity index 100% rename from Resources/views/Report/list.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/list.html.twig diff --git a/Resources/views/Report/new.html.twig b/src/Bundle/ChillReport/Resources/views/Report/new.html.twig similarity index 100% rename from Resources/views/Report/new.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/new.html.twig diff --git a/Resources/views/Report/select_report_type.html.twig b/src/Bundle/ChillReport/Resources/views/Report/select_report_type.html.twig similarity index 100% rename from Resources/views/Report/select_report_type.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/select_report_type.html.twig diff --git a/Resources/views/Report/select_report_type_for_export.html.twig b/src/Bundle/ChillReport/Resources/views/Report/select_report_type_for_export.html.twig similarity index 100% rename from Resources/views/Report/select_report_type_for_export.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/select_report_type_for_export.html.twig diff --git a/Resources/views/Report/view.html.twig b/src/Bundle/ChillReport/Resources/views/Report/view.html.twig similarity index 100% rename from Resources/views/Report/view.html.twig rename to src/Bundle/ChillReport/Resources/views/Report/view.html.twig diff --git a/Resources/views/Search/results.html.twig b/src/Bundle/ChillReport/Resources/views/Search/results.html.twig similarity index 100% rename from Resources/views/Search/results.html.twig rename to src/Bundle/ChillReport/Resources/views/Search/results.html.twig diff --git a/Resources/views/Timeline/report_person_context.html.twig b/src/Bundle/ChillReport/Resources/views/Timeline/report_person_context.html.twig similarity index 100% rename from Resources/views/Timeline/report_person_context.html.twig rename to src/Bundle/ChillReport/Resources/views/Timeline/report_person_context.html.twig diff --git a/Search/ReportSearch.php b/src/Bundle/ChillReport/Search/ReportSearch.php similarity index 100% rename from Search/ReportSearch.php rename to src/Bundle/ChillReport/Search/ReportSearch.php diff --git a/Security/Authorization/ReportVoter.php b/src/Bundle/ChillReport/Security/Authorization/ReportVoter.php similarity index 100% rename from Security/Authorization/ReportVoter.php rename to src/Bundle/ChillReport/Security/Authorization/ReportVoter.php diff --git a/Tests/Controller/ReportControllerNextTest.php b/src/Bundle/ChillReport/Tests/Controller/ReportControllerNextTest.php similarity index 100% rename from Tests/Controller/ReportControllerNextTest.php rename to src/Bundle/ChillReport/Tests/Controller/ReportControllerNextTest.php diff --git a/Tests/Controller/ReportControllerTest.php b/src/Bundle/ChillReport/Tests/Controller/ReportControllerTest.php similarity index 100% rename from Tests/Controller/ReportControllerTest.php rename to src/Bundle/ChillReport/Tests/Controller/ReportControllerTest.php diff --git a/Tests/DependencyInjection/ChillReportExtensionTest.php b/src/Bundle/ChillReport/Tests/DependencyInjection/ChillReportExtensionTest.php similarity index 100% rename from Tests/DependencyInjection/ChillReportExtensionTest.php rename to src/Bundle/ChillReport/Tests/DependencyInjection/ChillReportExtensionTest.php diff --git a/Tests/Search/ReportSearchTest.php b/src/Bundle/ChillReport/Tests/Search/ReportSearchTest.php similarity index 100% rename from Tests/Search/ReportSearchTest.php rename to src/Bundle/ChillReport/Tests/Search/ReportSearchTest.php diff --git a/Tests/Security/Authorization/ReportVoterTest.php b/src/Bundle/ChillReport/Tests/Security/Authorization/ReportVoterTest.php similarity index 100% rename from Tests/Security/Authorization/ReportVoterTest.php rename to src/Bundle/ChillReport/Tests/Security/Authorization/ReportVoterTest.php diff --git a/Tests/Timeline/TimelineProviderTest.php b/src/Bundle/ChillReport/Tests/Timeline/TimelineProviderTest.php similarity index 100% rename from Tests/Timeline/TimelineProviderTest.php rename to src/Bundle/ChillReport/Tests/Timeline/TimelineProviderTest.php diff --git a/Tests/bootstrap.php b/src/Bundle/ChillReport/Tests/bootstrap.php similarity index 100% rename from Tests/bootstrap.php rename to src/Bundle/ChillReport/Tests/bootstrap.php diff --git a/Timeline/TimelineReportProvider.php b/src/Bundle/ChillReport/Timeline/TimelineReportProvider.php similarity index 100% rename from Timeline/TimelineReportProvider.php rename to src/Bundle/ChillReport/Timeline/TimelineReportProvider.php diff --git a/apigen.neon b/src/Bundle/ChillReport/apigen.neon similarity index 100% rename from apigen.neon rename to src/Bundle/ChillReport/apigen.neon diff --git a/composer.json b/src/Bundle/ChillReport/composer.json similarity index 100% rename from composer.json rename to src/Bundle/ChillReport/composer.json diff --git a/console.sh b/src/Bundle/ChillReport/console.sh similarity index 100% rename from console.sh rename to src/Bundle/ChillReport/console.sh diff --git a/phpunit.xml.dist b/src/Bundle/ChillReport/phpunit.xml.dist similarity index 100% rename from phpunit.xml.dist rename to src/Bundle/ChillReport/phpunit.xml.dist