From aa062fe78647ec136b82f7eb7378555406a1d8b0 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/ChillTask/.gitignore | 0 .gitlab-ci.yml => src/Bundle/ChillTask/.gitlab-ci.yml | 0 CHANGELOG.md => src/Bundle/ChillTask/CHANGELOG.md | 0 ChillTaskBundle.php => src/Bundle/ChillTask/ChillTaskBundle.php | 0 .../Bundle/ChillTask/Controller}/SingleTaskController.php | 0 .../Bundle/ChillTask/Controller}/TaskController.php | 0 .../Bundle/ChillTask/DataFixtures}/ORM/LoadTaskACL.php | 0 .../Bundle/ChillTask/DependencyInjection}/ChillTaskExtension.php | 0 .../Compiler/TaskWorkflowDefinitionCompilerPass.php | 0 .../Bundle/ChillTask/DependencyInjection}/Configuration.php | 0 {Entity => src/Bundle/ChillTask/Entity}/AbstractTask.php | 0 {Entity => src/Bundle/ChillTask/Entity}/RecurringTask.php | 0 {Entity => src/Bundle/ChillTask/Entity}/SingleTask.php | 0 .../Bundle/ChillTask/Entity}/Task/AbstractTaskPlaceEvent.php | 0 .../Bundle/ChillTask/Entity}/Task/SingleTaskPlaceEvent.php | 0 .../Bundle/ChillTask/Event}/Lifecycle/TaskLifecycleEvent.php | 0 {Event => src/Bundle/ChillTask/Event}/TaskEvent.php | 0 {Event => src/Bundle/ChillTask/Event}/UI/UIEvent.php | 0 {Form => src/Bundle/ChillTask/Form}/SingleTaskListType.php | 0 {Form => src/Bundle/ChillTask/Form}/SingleTaskType.php | 0 {Menu => src/Bundle/ChillTask/Menu}/PersonMenuBuilder.php | 0 {Menu => src/Bundle/ChillTask/Menu}/SectionMenuBuilder.php | 0 {Menu => src/Bundle/ChillTask/Menu}/UserMenuBuilder.php | 0 .../Bundle/ChillTask/Repository}/AbstractTaskRepository.php | 0 .../Bundle/ChillTask/Repository}/RecurringTaskRepository.php | 0 .../Bundle/ChillTask/Repository}/SingleTaskRepository.php | 0 {Resources => src/Bundle/ChillTask/Resources}/public/index.js | 0 .../Bundle/ChillTask/Resources}/public/sass/_task-list.scss | 0 .../Bundle/ChillTask/Resources}/public/sass/_task-statuses.scss | 0 .../Bundle/ChillTask/Resources}/public/sass/_task.scss | 0 .../Bundle/ChillTask/Resources}/public/svg/archive.svg | 0 .../Bundle/ChillTask/Resources}/public/svg/check.svg | 0 .../Bundle/ChillTask/Resources}/public/svg/exchange-alt.svg | 0 {Resources => src/Bundle/ChillTask/Resources}/public/svg/play.svg | 0 .../Bundle/ChillTask/Resources}/views/SingleTask/_list.html.twig | 0 .../Resources}/views/SingleTask/confirm_delete.html.twig | 0 .../Bundle/ChillTask/Resources}/views/SingleTask/edit.html.twig | 0 .../Bundle/ChillTask/Resources}/views/SingleTask/index.html.twig | 0 .../Bundle/ChillTask/Resources}/views/SingleTask/new.html.twig | 0 .../Bundle/ChillTask/Resources}/views/SingleTask/show.html.twig | 0 .../ChillTask/Resources}/views/SingleTask/transition.html.twig | 0 .../Timeline/single_task_transition_person_context.html.twig | 0 .../views/Timeline/single_task_transition_task_context.html.twig | 0 .../ChillTask/Security}/Authorization/AuthorizationEvent.php | 0 .../Bundle/ChillTask/Security}/Authorization/TaskVoter.php | 0 .../Bundle/ChillTask/Templating}/TaskTwigExtension.php | 0 .../Bundle/ChillTask/Templating}/UI/CountNotificationTask.php | 0 .../ChillTask/Tests}/Controller/SingleTaskControllerTest.php | 0 .../Bundle/ChillTask/Tests}/Controller/TaskControllerTest.php | 0 .../Timeline}/SingleTaskTaskLifeCycleEventTimelineProvider.php | 0 .../ChillTask/Timeline}/TaskLifeCycleEventTimelineProvider.php | 0 .../ChillTask/Workflow}/Definition/DefaultTaskDefinition.php | 0 .../Bundle/ChillTask/Workflow}/Event/DefaultTaskGuardEvent.php | 0 .../Bundle/ChillTask/Workflow}/TaskWorkflowDefinition.php | 0 .../Bundle/ChillTask/Workflow}/TaskWorkflowManager.php | 0 .../Bundle/ChillTask/chill.webpack.config.js | 0 composer.json => src/Bundle/ChillTask/composer.json | 0 composer.lock => src/Bundle/ChillTask/composer.lock | 0 {config => src/Bundle/ChillTask/config}/routes.yaml | 0 {config => src/Bundle/ChillTask/config}/services.yaml | 0 {config => src/Bundle/ChillTask/config}/services/controller.yaml | 0 {config => src/Bundle/ChillTask/config}/services/event.yaml | 0 {config => src/Bundle/ChillTask/config}/services/fixtures.yaml | 0 {config => src/Bundle/ChillTask/config}/services/form.yaml | 0 {config => src/Bundle/ChillTask/config}/services/menu.yaml | 0 .../Bundle/ChillTask/config}/services/repositories.yaml | 0 {config => src/Bundle/ChillTask/config}/services/security.yaml | 0 {config => src/Bundle/ChillTask/config}/services/templating.yaml | 0 {config => src/Bundle/ChillTask/config}/services/timeline.yaml | 0 {config => src/Bundle/ChillTask/config}/services/workflow.yaml | 0 .../Bundle/ChillTask/migrations}/Version20180413135614.php | 0 .../Bundle/ChillTask/migrations}/Version20180413201023.php | 0 .../Bundle/ChillTask/migrations}/Version20180426093011.php | 0 .../Bundle/ChillTask/migrations}/Version20180502194119.php | 0 .../Bundle/ChillTask/migrations}/Version20181113161925.php | 0 .../Bundle/ChillTask/migrations}/Version20181113164108.php | 0 .../Bundle/ChillTask/translations}/messages.fr.yml | 0 .../Bundle/ChillTask/translations}/validators.fr.yml | 0 78 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => src/Bundle/ChillTask/.gitignore (100%) rename .gitlab-ci.yml => src/Bundle/ChillTask/.gitlab-ci.yml (100%) rename CHANGELOG.md => src/Bundle/ChillTask/CHANGELOG.md (100%) rename ChillTaskBundle.php => src/Bundle/ChillTask/ChillTaskBundle.php (100%) rename {Controller => src/Bundle/ChillTask/Controller}/SingleTaskController.php (100%) rename {Controller => src/Bundle/ChillTask/Controller}/TaskController.php (100%) rename {DataFixtures => src/Bundle/ChillTask/DataFixtures}/ORM/LoadTaskACL.php (100%) rename {DependencyInjection => src/Bundle/ChillTask/DependencyInjection}/ChillTaskExtension.php (100%) rename {DependencyInjection => src/Bundle/ChillTask/DependencyInjection}/Compiler/TaskWorkflowDefinitionCompilerPass.php (100%) rename {DependencyInjection => src/Bundle/ChillTask/DependencyInjection}/Configuration.php (100%) rename {Entity => src/Bundle/ChillTask/Entity}/AbstractTask.php (100%) rename {Entity => src/Bundle/ChillTask/Entity}/RecurringTask.php (100%) rename {Entity => src/Bundle/ChillTask/Entity}/SingleTask.php (100%) rename {Entity => src/Bundle/ChillTask/Entity}/Task/AbstractTaskPlaceEvent.php (100%) rename {Entity => src/Bundle/ChillTask/Entity}/Task/SingleTaskPlaceEvent.php (100%) rename {Event => src/Bundle/ChillTask/Event}/Lifecycle/TaskLifecycleEvent.php (100%) rename {Event => src/Bundle/ChillTask/Event}/TaskEvent.php (100%) rename {Event => src/Bundle/ChillTask/Event}/UI/UIEvent.php (100%) rename {Form => src/Bundle/ChillTask/Form}/SingleTaskListType.php (100%) rename {Form => src/Bundle/ChillTask/Form}/SingleTaskType.php (100%) rename {Menu => src/Bundle/ChillTask/Menu}/PersonMenuBuilder.php (100%) rename {Menu => src/Bundle/ChillTask/Menu}/SectionMenuBuilder.php (100%) rename {Menu => src/Bundle/ChillTask/Menu}/UserMenuBuilder.php (100%) rename {Repository => src/Bundle/ChillTask/Repository}/AbstractTaskRepository.php (100%) rename {Repository => src/Bundle/ChillTask/Repository}/RecurringTaskRepository.php (100%) rename {Repository => src/Bundle/ChillTask/Repository}/SingleTaskRepository.php (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/index.js (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/sass/_task-list.scss (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/sass/_task-statuses.scss (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/sass/_task.scss (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/svg/archive.svg (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/svg/check.svg (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/svg/exchange-alt.svg (100%) rename {Resources => src/Bundle/ChillTask/Resources}/public/svg/play.svg (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/_list.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/confirm_delete.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/edit.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/index.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/new.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/show.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/SingleTask/transition.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/Timeline/single_task_transition_person_context.html.twig (100%) rename {Resources => src/Bundle/ChillTask/Resources}/views/Timeline/single_task_transition_task_context.html.twig (100%) rename {Security => src/Bundle/ChillTask/Security}/Authorization/AuthorizationEvent.php (100%) rename {Security => src/Bundle/ChillTask/Security}/Authorization/TaskVoter.php (100%) rename {Templating => src/Bundle/ChillTask/Templating}/TaskTwigExtension.php (100%) rename {Templating => src/Bundle/ChillTask/Templating}/UI/CountNotificationTask.php (100%) rename {Tests => src/Bundle/ChillTask/Tests}/Controller/SingleTaskControllerTest.php (100%) rename {Tests => src/Bundle/ChillTask/Tests}/Controller/TaskControllerTest.php (100%) rename {Timeline => src/Bundle/ChillTask/Timeline}/SingleTaskTaskLifeCycleEventTimelineProvider.php (100%) rename {Timeline => src/Bundle/ChillTask/Timeline}/TaskLifeCycleEventTimelineProvider.php (100%) rename {Workflow => src/Bundle/ChillTask/Workflow}/Definition/DefaultTaskDefinition.php (100%) rename {Workflow => src/Bundle/ChillTask/Workflow}/Event/DefaultTaskGuardEvent.php (100%) rename {Workflow => src/Bundle/ChillTask/Workflow}/TaskWorkflowDefinition.php (100%) rename {Workflow => src/Bundle/ChillTask/Workflow}/TaskWorkflowManager.php (100%) rename chill.webpack.config.js => src/Bundle/ChillTask/chill.webpack.config.js (100%) rename composer.json => src/Bundle/ChillTask/composer.json (100%) rename composer.lock => src/Bundle/ChillTask/composer.lock (100%) rename {config => src/Bundle/ChillTask/config}/routes.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/controller.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/event.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/fixtures.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/form.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/menu.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/repositories.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/security.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/templating.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/timeline.yaml (100%) rename {config => src/Bundle/ChillTask/config}/services/workflow.yaml (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20180413135614.php (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20180413201023.php (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20180426093011.php (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20180502194119.php (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20181113161925.php (100%) rename {migrations => src/Bundle/ChillTask/migrations}/Version20181113164108.php (100%) rename {translations => src/Bundle/ChillTask/translations}/messages.fr.yml (100%) rename {translations => src/Bundle/ChillTask/translations}/validators.fr.yml (100%) diff --git a/.gitignore b/src/Bundle/ChillTask/.gitignore similarity index 100% rename from .gitignore rename to src/Bundle/ChillTask/.gitignore diff --git a/.gitlab-ci.yml b/src/Bundle/ChillTask/.gitlab-ci.yml similarity index 100% rename from .gitlab-ci.yml rename to src/Bundle/ChillTask/.gitlab-ci.yml diff --git a/CHANGELOG.md b/src/Bundle/ChillTask/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to src/Bundle/ChillTask/CHANGELOG.md diff --git a/ChillTaskBundle.php b/src/Bundle/ChillTask/ChillTaskBundle.php similarity index 100% rename from ChillTaskBundle.php rename to src/Bundle/ChillTask/ChillTaskBundle.php diff --git a/Controller/SingleTaskController.php b/src/Bundle/ChillTask/Controller/SingleTaskController.php similarity index 100% rename from Controller/SingleTaskController.php rename to src/Bundle/ChillTask/Controller/SingleTaskController.php diff --git a/Controller/TaskController.php b/src/Bundle/ChillTask/Controller/TaskController.php similarity index 100% rename from Controller/TaskController.php rename to src/Bundle/ChillTask/Controller/TaskController.php diff --git a/DataFixtures/ORM/LoadTaskACL.php b/src/Bundle/ChillTask/DataFixtures/ORM/LoadTaskACL.php similarity index 100% rename from DataFixtures/ORM/LoadTaskACL.php rename to src/Bundle/ChillTask/DataFixtures/ORM/LoadTaskACL.php diff --git a/DependencyInjection/ChillTaskExtension.php b/src/Bundle/ChillTask/DependencyInjection/ChillTaskExtension.php similarity index 100% rename from DependencyInjection/ChillTaskExtension.php rename to src/Bundle/ChillTask/DependencyInjection/ChillTaskExtension.php diff --git a/DependencyInjection/Compiler/TaskWorkflowDefinitionCompilerPass.php b/src/Bundle/ChillTask/DependencyInjection/Compiler/TaskWorkflowDefinitionCompilerPass.php similarity index 100% rename from DependencyInjection/Compiler/TaskWorkflowDefinitionCompilerPass.php rename to src/Bundle/ChillTask/DependencyInjection/Compiler/TaskWorkflowDefinitionCompilerPass.php diff --git a/DependencyInjection/Configuration.php b/src/Bundle/ChillTask/DependencyInjection/Configuration.php similarity index 100% rename from DependencyInjection/Configuration.php rename to src/Bundle/ChillTask/DependencyInjection/Configuration.php diff --git a/Entity/AbstractTask.php b/src/Bundle/ChillTask/Entity/AbstractTask.php similarity index 100% rename from Entity/AbstractTask.php rename to src/Bundle/ChillTask/Entity/AbstractTask.php diff --git a/Entity/RecurringTask.php b/src/Bundle/ChillTask/Entity/RecurringTask.php similarity index 100% rename from Entity/RecurringTask.php rename to src/Bundle/ChillTask/Entity/RecurringTask.php diff --git a/Entity/SingleTask.php b/src/Bundle/ChillTask/Entity/SingleTask.php similarity index 100% rename from Entity/SingleTask.php rename to src/Bundle/ChillTask/Entity/SingleTask.php diff --git a/Entity/Task/AbstractTaskPlaceEvent.php b/src/Bundle/ChillTask/Entity/Task/AbstractTaskPlaceEvent.php similarity index 100% rename from Entity/Task/AbstractTaskPlaceEvent.php rename to src/Bundle/ChillTask/Entity/Task/AbstractTaskPlaceEvent.php diff --git a/Entity/Task/SingleTaskPlaceEvent.php b/src/Bundle/ChillTask/Entity/Task/SingleTaskPlaceEvent.php similarity index 100% rename from Entity/Task/SingleTaskPlaceEvent.php rename to src/Bundle/ChillTask/Entity/Task/SingleTaskPlaceEvent.php diff --git a/Event/Lifecycle/TaskLifecycleEvent.php b/src/Bundle/ChillTask/Event/Lifecycle/TaskLifecycleEvent.php similarity index 100% rename from Event/Lifecycle/TaskLifecycleEvent.php rename to src/Bundle/ChillTask/Event/Lifecycle/TaskLifecycleEvent.php diff --git a/Event/TaskEvent.php b/src/Bundle/ChillTask/Event/TaskEvent.php similarity index 100% rename from Event/TaskEvent.php rename to src/Bundle/ChillTask/Event/TaskEvent.php diff --git a/Event/UI/UIEvent.php b/src/Bundle/ChillTask/Event/UI/UIEvent.php similarity index 100% rename from Event/UI/UIEvent.php rename to src/Bundle/ChillTask/Event/UI/UIEvent.php diff --git a/Form/SingleTaskListType.php b/src/Bundle/ChillTask/Form/SingleTaskListType.php similarity index 100% rename from Form/SingleTaskListType.php rename to src/Bundle/ChillTask/Form/SingleTaskListType.php diff --git a/Form/SingleTaskType.php b/src/Bundle/ChillTask/Form/SingleTaskType.php similarity index 100% rename from Form/SingleTaskType.php rename to src/Bundle/ChillTask/Form/SingleTaskType.php diff --git a/Menu/PersonMenuBuilder.php b/src/Bundle/ChillTask/Menu/PersonMenuBuilder.php similarity index 100% rename from Menu/PersonMenuBuilder.php rename to src/Bundle/ChillTask/Menu/PersonMenuBuilder.php diff --git a/Menu/SectionMenuBuilder.php b/src/Bundle/ChillTask/Menu/SectionMenuBuilder.php similarity index 100% rename from Menu/SectionMenuBuilder.php rename to src/Bundle/ChillTask/Menu/SectionMenuBuilder.php diff --git a/Menu/UserMenuBuilder.php b/src/Bundle/ChillTask/Menu/UserMenuBuilder.php similarity index 100% rename from Menu/UserMenuBuilder.php rename to src/Bundle/ChillTask/Menu/UserMenuBuilder.php diff --git a/Repository/AbstractTaskRepository.php b/src/Bundle/ChillTask/Repository/AbstractTaskRepository.php similarity index 100% rename from Repository/AbstractTaskRepository.php rename to src/Bundle/ChillTask/Repository/AbstractTaskRepository.php diff --git a/Repository/RecurringTaskRepository.php b/src/Bundle/ChillTask/Repository/RecurringTaskRepository.php similarity index 100% rename from Repository/RecurringTaskRepository.php rename to src/Bundle/ChillTask/Repository/RecurringTaskRepository.php diff --git a/Repository/SingleTaskRepository.php b/src/Bundle/ChillTask/Repository/SingleTaskRepository.php similarity index 100% rename from Repository/SingleTaskRepository.php rename to src/Bundle/ChillTask/Repository/SingleTaskRepository.php diff --git a/Resources/public/index.js b/src/Bundle/ChillTask/Resources/public/index.js similarity index 100% rename from Resources/public/index.js rename to src/Bundle/ChillTask/Resources/public/index.js diff --git a/Resources/public/sass/_task-list.scss b/src/Bundle/ChillTask/Resources/public/sass/_task-list.scss similarity index 100% rename from Resources/public/sass/_task-list.scss rename to src/Bundle/ChillTask/Resources/public/sass/_task-list.scss diff --git a/Resources/public/sass/_task-statuses.scss b/src/Bundle/ChillTask/Resources/public/sass/_task-statuses.scss similarity index 100% rename from Resources/public/sass/_task-statuses.scss rename to src/Bundle/ChillTask/Resources/public/sass/_task-statuses.scss diff --git a/Resources/public/sass/_task.scss b/src/Bundle/ChillTask/Resources/public/sass/_task.scss similarity index 100% rename from Resources/public/sass/_task.scss rename to src/Bundle/ChillTask/Resources/public/sass/_task.scss diff --git a/Resources/public/svg/archive.svg b/src/Bundle/ChillTask/Resources/public/svg/archive.svg similarity index 100% rename from Resources/public/svg/archive.svg rename to src/Bundle/ChillTask/Resources/public/svg/archive.svg diff --git a/Resources/public/svg/check.svg b/src/Bundle/ChillTask/Resources/public/svg/check.svg similarity index 100% rename from Resources/public/svg/check.svg rename to src/Bundle/ChillTask/Resources/public/svg/check.svg diff --git a/Resources/public/svg/exchange-alt.svg b/src/Bundle/ChillTask/Resources/public/svg/exchange-alt.svg similarity index 100% rename from Resources/public/svg/exchange-alt.svg rename to src/Bundle/ChillTask/Resources/public/svg/exchange-alt.svg diff --git a/Resources/public/svg/play.svg b/src/Bundle/ChillTask/Resources/public/svg/play.svg similarity index 100% rename from Resources/public/svg/play.svg rename to src/Bundle/ChillTask/Resources/public/svg/play.svg diff --git a/Resources/views/SingleTask/_list.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/_list.html.twig similarity index 100% rename from Resources/views/SingleTask/_list.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/_list.html.twig diff --git a/Resources/views/SingleTask/confirm_delete.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/confirm_delete.html.twig similarity index 100% rename from Resources/views/SingleTask/confirm_delete.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/confirm_delete.html.twig diff --git a/Resources/views/SingleTask/edit.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/edit.html.twig similarity index 100% rename from Resources/views/SingleTask/edit.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/edit.html.twig diff --git a/Resources/views/SingleTask/index.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/index.html.twig similarity index 100% rename from Resources/views/SingleTask/index.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/index.html.twig diff --git a/Resources/views/SingleTask/new.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/new.html.twig similarity index 100% rename from Resources/views/SingleTask/new.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/new.html.twig diff --git a/Resources/views/SingleTask/show.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/show.html.twig similarity index 100% rename from Resources/views/SingleTask/show.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/show.html.twig diff --git a/Resources/views/SingleTask/transition.html.twig b/src/Bundle/ChillTask/Resources/views/SingleTask/transition.html.twig similarity index 100% rename from Resources/views/SingleTask/transition.html.twig rename to src/Bundle/ChillTask/Resources/views/SingleTask/transition.html.twig diff --git a/Resources/views/Timeline/single_task_transition_person_context.html.twig b/src/Bundle/ChillTask/Resources/views/Timeline/single_task_transition_person_context.html.twig similarity index 100% rename from Resources/views/Timeline/single_task_transition_person_context.html.twig rename to src/Bundle/ChillTask/Resources/views/Timeline/single_task_transition_person_context.html.twig diff --git a/Resources/views/Timeline/single_task_transition_task_context.html.twig b/src/Bundle/ChillTask/Resources/views/Timeline/single_task_transition_task_context.html.twig similarity index 100% rename from Resources/views/Timeline/single_task_transition_task_context.html.twig rename to src/Bundle/ChillTask/Resources/views/Timeline/single_task_transition_task_context.html.twig diff --git a/Security/Authorization/AuthorizationEvent.php b/src/Bundle/ChillTask/Security/Authorization/AuthorizationEvent.php similarity index 100% rename from Security/Authorization/AuthorizationEvent.php rename to src/Bundle/ChillTask/Security/Authorization/AuthorizationEvent.php diff --git a/Security/Authorization/TaskVoter.php b/src/Bundle/ChillTask/Security/Authorization/TaskVoter.php similarity index 100% rename from Security/Authorization/TaskVoter.php rename to src/Bundle/ChillTask/Security/Authorization/TaskVoter.php diff --git a/Templating/TaskTwigExtension.php b/src/Bundle/ChillTask/Templating/TaskTwigExtension.php similarity index 100% rename from Templating/TaskTwigExtension.php rename to src/Bundle/ChillTask/Templating/TaskTwigExtension.php diff --git a/Templating/UI/CountNotificationTask.php b/src/Bundle/ChillTask/Templating/UI/CountNotificationTask.php similarity index 100% rename from Templating/UI/CountNotificationTask.php rename to src/Bundle/ChillTask/Templating/UI/CountNotificationTask.php diff --git a/Tests/Controller/SingleTaskControllerTest.php b/src/Bundle/ChillTask/Tests/Controller/SingleTaskControllerTest.php similarity index 100% rename from Tests/Controller/SingleTaskControllerTest.php rename to src/Bundle/ChillTask/Tests/Controller/SingleTaskControllerTest.php diff --git a/Tests/Controller/TaskControllerTest.php b/src/Bundle/ChillTask/Tests/Controller/TaskControllerTest.php similarity index 100% rename from Tests/Controller/TaskControllerTest.php rename to src/Bundle/ChillTask/Tests/Controller/TaskControllerTest.php diff --git a/Timeline/SingleTaskTaskLifeCycleEventTimelineProvider.php b/src/Bundle/ChillTask/Timeline/SingleTaskTaskLifeCycleEventTimelineProvider.php similarity index 100% rename from Timeline/SingleTaskTaskLifeCycleEventTimelineProvider.php rename to src/Bundle/ChillTask/Timeline/SingleTaskTaskLifeCycleEventTimelineProvider.php diff --git a/Timeline/TaskLifeCycleEventTimelineProvider.php b/src/Bundle/ChillTask/Timeline/TaskLifeCycleEventTimelineProvider.php similarity index 100% rename from Timeline/TaskLifeCycleEventTimelineProvider.php rename to src/Bundle/ChillTask/Timeline/TaskLifeCycleEventTimelineProvider.php diff --git a/Workflow/Definition/DefaultTaskDefinition.php b/src/Bundle/ChillTask/Workflow/Definition/DefaultTaskDefinition.php similarity index 100% rename from Workflow/Definition/DefaultTaskDefinition.php rename to src/Bundle/ChillTask/Workflow/Definition/DefaultTaskDefinition.php diff --git a/Workflow/Event/DefaultTaskGuardEvent.php b/src/Bundle/ChillTask/Workflow/Event/DefaultTaskGuardEvent.php similarity index 100% rename from Workflow/Event/DefaultTaskGuardEvent.php rename to src/Bundle/ChillTask/Workflow/Event/DefaultTaskGuardEvent.php diff --git a/Workflow/TaskWorkflowDefinition.php b/src/Bundle/ChillTask/Workflow/TaskWorkflowDefinition.php similarity index 100% rename from Workflow/TaskWorkflowDefinition.php rename to src/Bundle/ChillTask/Workflow/TaskWorkflowDefinition.php diff --git a/Workflow/TaskWorkflowManager.php b/src/Bundle/ChillTask/Workflow/TaskWorkflowManager.php similarity index 100% rename from Workflow/TaskWorkflowManager.php rename to src/Bundle/ChillTask/Workflow/TaskWorkflowManager.php diff --git a/chill.webpack.config.js b/src/Bundle/ChillTask/chill.webpack.config.js similarity index 100% rename from chill.webpack.config.js rename to src/Bundle/ChillTask/chill.webpack.config.js diff --git a/composer.json b/src/Bundle/ChillTask/composer.json similarity index 100% rename from composer.json rename to src/Bundle/ChillTask/composer.json diff --git a/composer.lock b/src/Bundle/ChillTask/composer.lock similarity index 100% rename from composer.lock rename to src/Bundle/ChillTask/composer.lock diff --git a/config/routes.yaml b/src/Bundle/ChillTask/config/routes.yaml similarity index 100% rename from config/routes.yaml rename to src/Bundle/ChillTask/config/routes.yaml diff --git a/config/services.yaml b/src/Bundle/ChillTask/config/services.yaml similarity index 100% rename from config/services.yaml rename to src/Bundle/ChillTask/config/services.yaml diff --git a/config/services/controller.yaml b/src/Bundle/ChillTask/config/services/controller.yaml similarity index 100% rename from config/services/controller.yaml rename to src/Bundle/ChillTask/config/services/controller.yaml diff --git a/config/services/event.yaml b/src/Bundle/ChillTask/config/services/event.yaml similarity index 100% rename from config/services/event.yaml rename to src/Bundle/ChillTask/config/services/event.yaml diff --git a/config/services/fixtures.yaml b/src/Bundle/ChillTask/config/services/fixtures.yaml similarity index 100% rename from config/services/fixtures.yaml rename to src/Bundle/ChillTask/config/services/fixtures.yaml diff --git a/config/services/form.yaml b/src/Bundle/ChillTask/config/services/form.yaml similarity index 100% rename from config/services/form.yaml rename to src/Bundle/ChillTask/config/services/form.yaml diff --git a/config/services/menu.yaml b/src/Bundle/ChillTask/config/services/menu.yaml similarity index 100% rename from config/services/menu.yaml rename to src/Bundle/ChillTask/config/services/menu.yaml diff --git a/config/services/repositories.yaml b/src/Bundle/ChillTask/config/services/repositories.yaml similarity index 100% rename from config/services/repositories.yaml rename to src/Bundle/ChillTask/config/services/repositories.yaml diff --git a/config/services/security.yaml b/src/Bundle/ChillTask/config/services/security.yaml similarity index 100% rename from config/services/security.yaml rename to src/Bundle/ChillTask/config/services/security.yaml diff --git a/config/services/templating.yaml b/src/Bundle/ChillTask/config/services/templating.yaml similarity index 100% rename from config/services/templating.yaml rename to src/Bundle/ChillTask/config/services/templating.yaml diff --git a/config/services/timeline.yaml b/src/Bundle/ChillTask/config/services/timeline.yaml similarity index 100% rename from config/services/timeline.yaml rename to src/Bundle/ChillTask/config/services/timeline.yaml diff --git a/config/services/workflow.yaml b/src/Bundle/ChillTask/config/services/workflow.yaml similarity index 100% rename from config/services/workflow.yaml rename to src/Bundle/ChillTask/config/services/workflow.yaml diff --git a/migrations/Version20180413135614.php b/src/Bundle/ChillTask/migrations/Version20180413135614.php similarity index 100% rename from migrations/Version20180413135614.php rename to src/Bundle/ChillTask/migrations/Version20180413135614.php diff --git a/migrations/Version20180413201023.php b/src/Bundle/ChillTask/migrations/Version20180413201023.php similarity index 100% rename from migrations/Version20180413201023.php rename to src/Bundle/ChillTask/migrations/Version20180413201023.php diff --git a/migrations/Version20180426093011.php b/src/Bundle/ChillTask/migrations/Version20180426093011.php similarity index 100% rename from migrations/Version20180426093011.php rename to src/Bundle/ChillTask/migrations/Version20180426093011.php diff --git a/migrations/Version20180502194119.php b/src/Bundle/ChillTask/migrations/Version20180502194119.php similarity index 100% rename from migrations/Version20180502194119.php rename to src/Bundle/ChillTask/migrations/Version20180502194119.php diff --git a/migrations/Version20181113161925.php b/src/Bundle/ChillTask/migrations/Version20181113161925.php similarity index 100% rename from migrations/Version20181113161925.php rename to src/Bundle/ChillTask/migrations/Version20181113161925.php diff --git a/migrations/Version20181113164108.php b/src/Bundle/ChillTask/migrations/Version20181113164108.php similarity index 100% rename from migrations/Version20181113164108.php rename to src/Bundle/ChillTask/migrations/Version20181113164108.php diff --git a/translations/messages.fr.yml b/src/Bundle/ChillTask/translations/messages.fr.yml similarity index 100% rename from translations/messages.fr.yml rename to src/Bundle/ChillTask/translations/messages.fr.yml diff --git a/translations/validators.fr.yml b/src/Bundle/ChillTask/translations/validators.fr.yml similarity index 100% rename from translations/validators.fr.yml rename to src/Bundle/ChillTask/translations/validators.fr.yml