From 9ac47016ebc350f2eea07d998efdcec244e2bf34 Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Wed, 29 Jul 2026 09:19:07 +1000 Subject: [PATCH 01/14] Relocated the installer package to '.vortex/cli' as 'drevops/vortex-cli'. --- .gitattributes | 2 +- .vortex/{installer => cli}/.gitignore | 0 .vortex/{installer => cli}/CLAUDE.md | 0 .vortex/{installer => cli}/README.md | 0 .vortex/{installer => cli}/box.json | 0 .vortex/{installer => cli}/composer.json | 4 +- .vortex/{installer => cli}/composer.lock | 0 .vortex/{installer => cli}/patches.lock.json | 0 .../patches/laravel-prompts.patch | 0 .../patches/reroot-patch.php | 0 .vortex/{installer => cli}/phpcs.xml | 0 .vortex/{installer => cli}/phpstan.neon | 0 .vortex/{installer => cli}/phpunit.xml | 0 .../playground/task-streaming.php | 4 +- .../{installer => cli}/playground/task.php | 4 +- .vortex/{installer => cli}/playground/tui.php | 2 +- .vortex/{installer => cli}/rector.php | 0 .../src/Command/BuildCommand.php | 18 +-- .../src/Command/CheckRequirementsCommand.php | 20 ++-- .../src/Command/DestinationAwareTrait.php | 2 +- .../src/Command/InstallCommand.php | 58 +++++----- .../src/Downloader/Archiver.php | 2 +- .../src/Downloader/ArchiverInterface.php | 2 +- .../src/Downloader/Artifact.php | 4 +- .../src/Downloader/Downloader.php | 2 +- .../src/Downloader/RepositoryDownloader.php | 16 +-- .../RepositoryDownloaderInterface.php | 4 +- .../src/Logger/FileLogger.php | 4 +- .../src/Logger/FileLoggerInterface.php | 2 +- .../src/Logger/LoggableInterface.php | 4 +- .../src/Logger/LoggerInterface.php | 2 +- .../src/Prompts/Handlers/AbstractHandler.php | 8 +- .../Prompts/Handlers/AiCodeInstructions.php | 4 +- .../src/Prompts/Handlers/AssignAuthorPr.php | 4 +- .../src/Prompts/Handlers/CiProvider.php | 4 +- .../Prompts/Handlers/CodeCoverageProvider.php | 4 +- .../src/Prompts/Handlers/CodeProvider.php | 4 +- .../src/Prompts/Handlers/CustomModules.php | 6 +- .../Prompts/Handlers/DatabaseFetchSource.php | 6 +- .../src/Prompts/Handlers/DatabaseImage.php | 8 +- .../Handlers/DependencyUpdatesProvider.php | 4 +- .../src/Prompts/Handlers/DeployTypes.php | 8 +- .../src/Prompts/Handlers/Domain.php | 10 +- .../src/Prompts/Handlers/Dotenv.php | 4 +- .../src/Prompts/Handlers/FrontendBuild.php | 4 +- .../src/Prompts/Handlers/Gitleaks.php | 4 +- .../src/Prompts/Handlers/HandlerInterface.php | 8 +- .../Prompts/Handlers/HostingProjectName.php | 8 +- .../src/Prompts/Handlers/HostingProvider.php | 8 +- .../src/Prompts/Handlers/Internal.php | 12 +- .../Handlers/LabelMergeConflictsPr.php | 4 +- .../src/Prompts/Handlers/MachineName.php | 10 +- .../src/Prompts/Handlers/Migration.php | 8 +- .../Prompts/Handlers/MigrationFetchSource.php | 6 +- .../src/Prompts/Handlers/MigrationImage.php | 8 +- .../src/Prompts/Handlers/ModulePrefix.php | 6 +- .../src/Prompts/Handlers/Modules.php | 6 +- .../src/Prompts/Handlers/Name.php | 8 +- .../Prompts/Handlers/NotificationChannels.php | 8 +- .../src/Prompts/Handlers/Org.php | 8 +- .../src/Prompts/Handlers/OrgMachineName.php | 8 +- .../Prompts/Handlers/PreserveDocsProject.php | 4 +- .../src/Prompts/Handlers/Profile.php | 6 +- .../src/Prompts/Handlers/ProfileCustom.php | 4 +- .../src/Prompts/Handlers/ProvisionType.php | 8 +- .../src/Prompts/Handlers/Services.php | 6 +- .../src/Prompts/Handlers/Starter.php | 6 +- .../src/Prompts/Handlers/Theme.php | 8 +- .../src/Prompts/Handlers/ThemeCustom.php | 4 +- .../src/Prompts/Handlers/Timezone.php | 6 +- .../src/Prompts/Handlers/Tools.php | 10 +- .../src/Prompts/Handlers/VersionScheme.php | 8 +- .../src/Prompts/Handlers/VisualRegression.php | 4 +- .../src/Prompts/Handlers/Webroot.php | 10 +- .../src/Prompts/InstallerPresenter.php | 14 +-- .../src/Prompts/PromptManager.php | 108 +++++++++--------- .../src/Prompts/PromptType.php | 4 +- .../src/Runner/AbstractRunner.php | 10 +- .../src/Runner/CommandRunner.php | 6 +- .../Runner/CommandRunnerAwareInterface.php | 6 +- .../src/Runner/CommandRunnerAwareTrait.php | 6 +- .../Runner/ExecutableFinderAwareInterface.php | 2 +- .../src/Runner/ExecutableFinderAwareTrait.php | 2 +- .../src/Runner/ProcessRunner.php | 2 +- .../Runner/ProcessRunnerAwareInterface.php | 6 +- .../src/Runner/ProcessRunnerAwareTrait.php | 6 +- .../src/Runner/RunnerInterface.php | 4 +- .../src/Schema/AgentHelp.php | 4 +- .../src/Schema/SchemaGenerator.php | 12 +- .../src/Schema/SchemaValidator.php | 12 +- .vortex/{installer => cli}/src/Task/Task.php | 6 +- .../src/Task/TaskOutput.php | 4 +- .../{installer => cli}/src/Utils/Config.php | 4 +- .../src/Utils/Converter.php | 2 +- .vortex/{installer => cli}/src/Utils/Env.php | 2 +- .vortex/{installer => cli}/src/Utils/File.php | 2 +- .../src/Utils/FileManager.php | 8 +- .vortex/{installer => cli}/src/Utils/Git.php | 2 +- .../src/Utils/JsonManipulator.php | 2 +- .../src/Utils/Normalizer.php | 4 +- .../src/Utils/OptionsResolver.php | 6 +- .../{installer => cli}/src/Utils/Strings.php | 2 +- .vortex/{installer => cli}/src/Utils/Tui.php | 2 +- .../src/Utils/Validator.php | 4 +- .../{installer => cli}/src/Utils/Version.php | 2 +- .vortex/{installer => cli}/src/Utils/Yaml.php | 2 +- .../tests/Fixtures/.editorconfig | 0 .../tests/Fixtures/.gitignore | 0 .../_baseline/.ahoy.local.example.yml | 0 .../handler_process/_baseline/.ahoy.yml | 0 .../_baseline/.claude/settings.json | 0 .../handler_process/_baseline/.dclintrc | 0 .../_baseline/.docker/clamav.dockerfile | 0 .../_baseline/.docker/cli.dockerfile | 0 .../_baseline/.docker/config/README.md | 0 .../.docker/config/clamav/clamav.conf | 0 .../_baseline/.docker/config/database/my.cnf | 0 .../.docker/config/nginx/redirects-map.conf | 0 .../config/solr/config-set/accents_ar.txt | 0 .../config/solr/config-set/accents_bg.txt | 0 .../config/solr/config-set/accents_ca.txt | 0 .../config/solr/config-set/accents_cs.txt | 0 .../config/solr/config-set/accents_cy.txt | 0 .../config/solr/config-set/accents_da.txt | 0 .../config/solr/config-set/accents_de.txt | 0 .../config/solr/config-set/accents_el.txt | 0 .../config/solr/config-set/accents_en.txt | 0 .../config/solr/config-set/accents_es.txt | 0 .../config/solr/config-set/accents_et.txt | 0 .../config/solr/config-set/accents_fa.txt | 0 .../config/solr/config-set/accents_fi.txt | 0 .../config/solr/config-set/accents_fr.txt | 0 .../config/solr/config-set/accents_ga.txt | 0 .../config/solr/config-set/accents_hi.txt | 0 .../config/solr/config-set/accents_hr.txt | 0 .../config/solr/config-set/accents_hu.txt | 0 .../config/solr/config-set/accents_id.txt | 0 .../config/solr/config-set/accents_it.txt | 0 .../config/solr/config-set/accents_lv.txt | 0 .../config/solr/config-set/accents_nb.txt | 0 .../config/solr/config-set/accents_nl.txt | 0 .../config/solr/config-set/accents_nn.txt | 0 .../config/solr/config-set/accents_pl.txt | 0 .../config/solr/config-set/accents_pt_br.txt | 0 .../config/solr/config-set/accents_pt_pt.txt | 0 .../config/solr/config-set/accents_ro.txt | 0 .../config/solr/config-set/accents_ru.txt | 0 .../config/solr/config-set/accents_sk.txt | 0 .../config/solr/config-set/accents_sr.txt | 0 .../config/solr/config-set/accents_sv.txt | 0 .../config/solr/config-set/accents_th.txt | 0 .../config/solr/config-set/accents_tr.txt | 0 .../config/solr/config-set/accents_uk.txt | 0 .../config/solr/config-set/accents_und.txt | 0 .../config/solr/config-set/elevate.xml | 0 .../config/solr/config-set/nouns_ar.txt | 0 .../config/solr/config-set/nouns_bg.txt | 0 .../config/solr/config-set/nouns_ca.txt | 0 .../config/solr/config-set/nouns_cy.txt | 0 .../config/solr/config-set/nouns_da.txt | 0 .../config/solr/config-set/nouns_de.txt | 0 .../config/solr/config-set/nouns_el.txt | 0 .../config/solr/config-set/nouns_es.txt | 0 .../config/solr/config-set/nouns_et.txt | 0 .../config/solr/config-set/nouns_fa.txt | 0 .../config/solr/config-set/nouns_fi.txt | 0 .../config/solr/config-set/nouns_fr.txt | 0 .../config/solr/config-set/nouns_hi.txt | 0 .../config/solr/config-set/nouns_it.txt | 0 .../config/solr/config-set/nouns_nb.txt | 0 .../config/solr/config-set/nouns_nl.txt | 0 .../config/solr/config-set/nouns_nn.txt | 0 .../config/solr/config-set/nouns_pl.txt | 0 .../config/solr/config-set/nouns_pt_br.txt | 0 .../config/solr/config-set/nouns_pt_pt.txt | 0 .../config/solr/config-set/nouns_ro.txt | 0 .../config/solr/config-set/nouns_ru.txt | 0 .../config/solr/config-set/nouns_sv.txt | 0 .../config/solr/config-set/nouns_th.txt | 0 .../config/solr/config-set/nouns_tr.txt | 0 .../config/solr/config-set/nouns_uk.txt | 0 .../config/solr/config-set/protwords_ar.txt | 0 .../config/solr/config-set/protwords_bg.txt | 0 .../config/solr/config-set/protwords_ca.txt | 0 .../config/solr/config-set/protwords_cs.txt | 0 .../config/solr/config-set/protwords_cy.txt | 0 .../config/solr/config-set/protwords_da.txt | 0 .../config/solr/config-set/protwords_de.txt | 0 .../config/solr/config-set/protwords_el.txt | 0 .../config/solr/config-set/protwords_en.txt | 0 .../config/solr/config-set/protwords_es.txt | 0 .../config/solr/config-set/protwords_et.txt | 0 .../config/solr/config-set/protwords_fa.txt | 0 .../config/solr/config-set/protwords_fi.txt | 0 .../config/solr/config-set/protwords_fr.txt | 0 .../config/solr/config-set/protwords_ga.txt | 0 .../config/solr/config-set/protwords_hi.txt | 0 .../config/solr/config-set/protwords_hr.txt | 0 .../config/solr/config-set/protwords_hu.txt | 0 .../config/solr/config-set/protwords_id.txt | 0 .../config/solr/config-set/protwords_it.txt | 0 .../config/solr/config-set/protwords_lv.txt | 0 .../config/solr/config-set/protwords_nb.txt | 0 .../config/solr/config-set/protwords_nl.txt | 0 .../config/solr/config-set/protwords_nn.txt | 0 .../config/solr/config-set/protwords_pl.txt | 0 .../solr/config-set/protwords_pt_br.txt | 0 .../solr/config-set/protwords_pt_pt.txt | 0 .../config/solr/config-set/protwords_ro.txt | 0 .../config/solr/config-set/protwords_ru.txt | 0 .../config/solr/config-set/protwords_sk.txt | 0 .../config/solr/config-set/protwords_sr.txt | 0 .../config/solr/config-set/protwords_sv.txt | 0 .../config/solr/config-set/protwords_th.txt | 0 .../config/solr/config-set/protwords_tr.txt | 0 .../config/solr/config-set/protwords_uk.txt | 0 .../config/solr/config-set/protwords_und.txt | 0 .../.docker/config/solr/config-set/schema.xml | 0 .../solr/config-set/schema_extra_fields.xml | 0 .../solr/config-set/schema_extra_types.xml | 0 .../config/solr/config-set/solrconfig.xml | 0 .../solr/config-set/solrconfig_extra.xml | 0 .../solr/config-set/solrconfig_index.xml | 0 .../solr/config-set/solrconfig_query.xml | 0 .../solrconfig_requestdispatcher.xml | 0 .../solr/config-set/solrcore.properties | 0 .../config/solr/config-set/stoptags_ja.txt | 0 .../config/solr/config-set/stopwords_ar.txt | 0 .../config/solr/config-set/stopwords_bg.txt | 0 .../config/solr/config-set/stopwords_ca.txt | 0 .../config/solr/config-set/stopwords_cs.txt | 0 .../config/solr/config-set/stopwords_cy.txt | 0 .../config/solr/config-set/stopwords_da.txt | 0 .../config/solr/config-set/stopwords_de.txt | 0 .../config/solr/config-set/stopwords_el.txt | 0 .../config/solr/config-set/stopwords_en.txt | 0 .../config/solr/config-set/stopwords_es.txt | 0 .../config/solr/config-set/stopwords_et.txt | 0 .../config/solr/config-set/stopwords_fa.txt | 0 .../config/solr/config-set/stopwords_fi.txt | 0 .../config/solr/config-set/stopwords_fr.txt | 0 .../config/solr/config-set/stopwords_ga.txt | 0 .../config/solr/config-set/stopwords_hi.txt | 0 .../config/solr/config-set/stopwords_hr.txt | 0 .../config/solr/config-set/stopwords_hu.txt | 0 .../config/solr/config-set/stopwords_id.txt | 0 .../config/solr/config-set/stopwords_it.txt | 0 .../config/solr/config-set/stopwords_ja.txt | 0 .../config/solr/config-set/stopwords_ko.txt | 0 .../config/solr/config-set/stopwords_lv.txt | 0 .../config/solr/config-set/stopwords_nb.txt | 0 .../config/solr/config-set/stopwords_nl.txt | 0 .../config/solr/config-set/stopwords_nn.txt | 0 .../config/solr/config-set/stopwords_pl.txt | 0 .../solr/config-set/stopwords_pt_br.txt | 0 .../solr/config-set/stopwords_pt_pt.txt | 0 .../config/solr/config-set/stopwords_ro.txt | 0 .../config/solr/config-set/stopwords_ru.txt | 0 .../config/solr/config-set/stopwords_sk.txt | 0 .../config/solr/config-set/stopwords_sr.txt | 0 .../config/solr/config-set/stopwords_sv.txt | 0 .../config/solr/config-set/stopwords_th.txt | 0 .../config/solr/config-set/stopwords_tr.txt | 0 .../config/solr/config-set/stopwords_uk.txt | 0 .../config/solr/config-set/stopwords_und.txt | 0 .../config/solr/config-set/synonyms_ar.txt | 0 .../config/solr/config-set/synonyms_bg.txt | 0 .../config/solr/config-set/synonyms_ca.txt | 0 .../config/solr/config-set/synonyms_cs.txt | 0 .../config/solr/config-set/synonyms_cy.txt | 0 .../config/solr/config-set/synonyms_da.txt | 0 .../config/solr/config-set/synonyms_de.txt | 0 .../config/solr/config-set/synonyms_el.txt | 0 .../config/solr/config-set/synonyms_en.txt | 0 .../config/solr/config-set/synonyms_es.txt | 0 .../config/solr/config-set/synonyms_et.txt | 0 .../config/solr/config-set/synonyms_fa.txt | 0 .../config/solr/config-set/synonyms_fi.txt | 0 .../config/solr/config-set/synonyms_fr.txt | 0 .../config/solr/config-set/synonyms_ga.txt | 0 .../config/solr/config-set/synonyms_hi.txt | 0 .../config/solr/config-set/synonyms_hr.txt | 0 .../config/solr/config-set/synonyms_hu.txt | 0 .../config/solr/config-set/synonyms_id.txt | 0 .../config/solr/config-set/synonyms_it.txt | 0 .../config/solr/config-set/synonyms_lv.txt | 0 .../config/solr/config-set/synonyms_nb.txt | 0 .../config/solr/config-set/synonyms_nl.txt | 0 .../config/solr/config-set/synonyms_nn.txt | 0 .../config/solr/config-set/synonyms_pl.txt | 0 .../config/solr/config-set/synonyms_pt_br.txt | 0 .../config/solr/config-set/synonyms_pt_pt.txt | 0 .../config/solr/config-set/synonyms_ro.txt | 0 .../config/solr/config-set/synonyms_ru.txt | 0 .../config/solr/config-set/synonyms_sk.txt | 0 .../config/solr/config-set/synonyms_sr.txt | 0 .../config/solr/config-set/synonyms_sv.txt | 0 .../config/solr/config-set/synonyms_th.txt | 0 .../config/solr/config-set/synonyms_tr.txt | 0 .../config/solr/config-set/synonyms_uk.txt | 0 .../config/solr/config-set/synonyms_und.txt | 0 .../_baseline/.docker/database.dockerfile | 0 .../_baseline/.docker/nginx-drupal.dockerfile | 0 .../_baseline/.docker/php.dockerfile | 0 .../_baseline/.docker/scripts/.gitkeep | 0 .../_baseline/.docker/scripts/README.md | 0 .../_baseline/.docker/solr.dockerfile | 0 .../handler_process/_baseline/.dockerignore | 0 .../handler_process/_baseline/.editorconfig | 0 .../Fixtures/handler_process/_baseline/.env | 0 .../_baseline/.env.local.example | 0 .../handler_process/_baseline/.eslintignore | 0 .../handler_process/_baseline/.eslintrc.json | 0 .../.github/PULL_REQUEST_TEMPLATE.md | 0 .../_baseline/.github/release-drafter.yml | 0 .../.github/workflows/assign-author.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/draft-release-notes.yml | 0 .../workflows/label-merge-conflict.yml | 0 .../handler_process/_baseline/.gitignore | 0 .../handler_process/_baseline/.gitleaks.toml | 0 .../handler_process/_baseline/.ignorecontent | 0 .../handler_process/_baseline/.prettierignore | 0 .../_baseline/.prettierrc.json | 0 .../handler_process/_baseline/.stylelintrc.js | 0 .../_baseline/.twig-cs-fixer.php | 0 .../handler_process/_baseline/AGENTS.md | 0 .../handler_process/_baseline/CLAUDE.md | 0 .../handler_process/_baseline/README.md | 0 .../handler_process/_baseline/behat.yml | 0 .../handler_process/_baseline/composer.json | 0 .../_baseline/config/ci/.gitkeep | 0 .../_baseline/config/ci/.htaccess | 0 .../_baseline/config/default/.gitkeep | 0 .../_baseline/config/default/.htaccess | 0 .../_baseline/config/dev/.gitkeep | 0 .../_baseline/config/dev/.htaccess | 0 .../_baseline/config/local/.gitkeep | 0 .../_baseline/config/local/.htaccess | 0 .../_baseline/config/stage/.gitkeep | 0 .../_baseline/config/stage/.htaccess | 0 .../_baseline/docker-compose.yml | 0 .../handler_process/_baseline/docs/README.md | 0 .../handler_process/_baseline/docs/ci.md | 0 .../_baseline/docs/deployment.md | 0 .../handler_process/_baseline/docs/faqs.md | 0 .../_baseline/docs/releasing.md | 0 .../handler_process/_baseline/docs/testing.md | 0 .../handler_process/_baseline/drush/drush.yml | 0 .../_baseline/drush/php-ini/drush.ini | 0 .../_baseline/gherkinlint.json | 0 .../handler_process/_baseline/jest.config.js | 0 .../handler_process/_baseline/package.json | 0 .../_baseline/patches/.gitkeep | 0 .../handler_process/_baseline/phpcs.xml | 0 .../handler_process/_baseline/phpstan.neon | 0 .../handler_process/_baseline/phpunit.xml | 0 .../_baseline/recipes/.gitignore | 0 ....entity_form_display.node.page.default.yml | 0 ....entity_view_display.node.page.default.yml | 0 ...e.entity_view_display.node.page.teaser.yml | 0 .../config/field.field.node.page.body.yml | 0 .../page/config/field.storage.node.body.yml | 0 .../recipes/page/config/node.type.page.yml | 0 .../_baseline/recipes/page/recipe.yml | 0 .../handler_process/_baseline/rector.php | 0 .../handler_process/_baseline/renovate.json | 0 .../_baseline/scripts/README.md | 0 .../_baseline/scripts/sanitize.sql | 0 .../_baseline/scripts/vortex-tooling.sh | 0 .../tests/behat/bootstrap/FeatureContext.php | 0 .../behat/features/accessibility.feature | 0 .../tests/behat/features/behat.feature | 0 .../tests/behat/features/clamav.feature | 0 .../tests/behat/features/counter.feature | 0 .../tests/behat/features/homepage.feature | 0 .../tests/behat/features/login.feature | 0 .../tests/behat/features/pages.feature | 0 .../tests/behat/features/redis.feature | 0 .../tests/behat/features/robotstxt.feature | 0 .../tests/behat/features/search.feature | 0 .../tests/behat/features/xmlsitemap.feature | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../_baseline/tests/phpunit/bootstrap.php | 0 .../_baseline/web/autoload.php | 0 .../_baseline/web/autoload_runtime.php | 0 .../handler_process/_baseline/web/index.php | 0 .../CreateContentModelDeployStep.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../modules/custom/sw_base/sw_base.info.yml | 0 .../web/modules/custom/sw_base/sw_base.module | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/ExampleTest.php | 0 .../tests/src/Kernel/SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/ArrayTrait.php | 0 .../sw_base/tests/src/Traits/AssertTrait.php | 0 .../src/Traits/BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/MockTrait.php | 0 .../tests/src/Traits/ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/SwBaseUnitTestBase.php | 0 .../install/views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/sw_demo.css | 0 .../web/modules/custom/sw_demo/js/sw_demo.js | 0 .../custom/sw_demo/js/tests/sw_demo.test.js | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../src/Plugin/GeneratedContent/Node/Page.php | 0 .../modules/custom/sw_demo/sw_demo.deploy.php | 0 .../modules/custom/sw_demo/sw_demo.info.yml | 0 .../custom/sw_demo/sw_demo.libraries.yml | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../templates/sw-demo-counter-block.html.twig | 0 .../FunctionalJavascript/CounterBlockTest.php | 0 .../tests/src/Kernel/CounterBlockTest.php | 0 .../tests/src/Unit/CounterBlockTest.php | 0 .../install/search_api.index.content.yml | 0 .../config/install/search_api.server.solr.yml | 0 .../config/install/views.view.search.yml | 0 .../Plugin/DeployStep/RebuildSearchIndex.php | 0 .../custom/sw_search/sw_search.deploy.php | 0 .../custom/sw_search/sw_search.info.yml | 0 .../custom/sw_search/sw_search.install | 0 .../web/sites/default/default.services.yml | 0 .../web/sites/default/default.settings.php | 0 .../sites/default/example.services.local.yml | 0 .../sites/default/example.settings.local.php | 0 .../modules/settings.automated_cron.php | 0 .../includes/modules/settings.clamav.php | 0 .../modules/settings.config_split.php | 0 .../includes/modules/settings.devel.php | 0 .../settings.environment_indicator.php | 0 .../includes/modules/settings.fast404.php | 0 .../modules/settings.generated_content.php | 0 .../includes/modules/settings.redis.php | 0 .../modules/settings.reroute_email.php | 0 .../includes/modules/settings.robotstxt.php | 0 .../includes/modules/settings.search_api.php | 0 .../includes/modules/settings.seckit.php | 0 .../includes/modules/settings.shield.php | 0 .../modules/settings.stage_file_proxy.php | 0 .../includes/modules/settings.sw_base.php | 0 .../includes/modules/settings.system.php | 0 .../includes/modules/settings.testmode.php | 0 .../modules/settings.trusted_hosts.php | 0 .../includes/modules/settings.xmlsitemap.php | 0 .../_baseline/web/sites/default/services.yml | 0 .../_baseline/web/sites/default/settings.php | 0 .../themes/custom/star_wars/.eslintrc.json | 0 .../web/themes/custom/star_wars/.gitignore | 0 .../web/themes/custom/star_wars/.npmrc | 0 .../themes/custom/star_wars/.prettierignore | 0 .../themes/custom/star_wars/.prettierrc.json | 0 .../themes/custom/star_wars/.stylelintrc.json | 0 .../web/themes/custom/star_wars/README.md | 0 .../components/button/button.component.yml | 0 .../star_wars/components/button/button.css | 0 .../star_wars/components/button/button.twig | 0 .../themes/custom/star_wars/fonts/.gitkeep | 0 .../themes/custom/star_wars/images/.gitkeep | 0 .../themes/custom/star_wars/js/star_wars.js | 0 .../web/themes/custom/star_wars/logo.svg | 0 .../web/themes/custom/star_wars/package.json | 0 .../themes/custom/star_wars/patches/.gitkeep | 0 .../themes/custom/star_wars/postcss.config.js | 0 .../custom/star_wars/scss/_components.scss | 0 .../themes/custom/star_wars/scss/_fonts.scss | 0 .../themes/custom/star_wars/scss/_mixins.scss | 0 .../themes/custom/star_wars/scss/_rem.scss | 0 .../custom/star_wars/scss/_variables.scss | 0 .../star_wars/scss/components/_header.scss | 0 .../themes/custom/star_wars/scss/styles.scss | 0 .../custom/star_wars/star_wars.info.yml | 0 .../custom/star_wars/star_wars.libraries.yml | 0 .../themes/custom/star_wars/star_wars.theme | 0 .../layout/region--footer-bottom.html.twig | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/StarWarsUnitTestBase.php | 0 .../ai_instructions_disabled/-AGENTS.md | 0 .../ai_instructions_disabled/-CLAUDE.md | 0 .../.claude/-settings.json | 0 .../ai_instructions_disabled/.gitignore | 0 .../ai_instructions_disabled/.ignorecontent | 0 .../.github/workflows/-assign-author.yml | 0 .../assign_author_pr_enabled/.ignorecontent | 0 .../ciprovider_circleci/.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../ciprovider_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../ciprovider_circleci/README.md | 0 .../ciprovider_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../ciprovider_gha/.ignorecontent | 0 .../.github/workflows/build-test-deploy.yml | 0 .../code_coverage_provider_codecov/README.md | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../README.md | 0 .../docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../code_provider_github/.ignorecontent | 0 .../.github/-PULL_REQUEST_TEMPLATE.md | 0 .../.github/-release-drafter.yml | 0 .../.github/workflows/-assign-author.yml | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../workflows/-draft-release-notes.yml | 0 .../workflows/-label-merge-conflict.yml | 0 .../code_provider_other/renovate.json | 0 .../custom/sw_base/-sw_base.deploy.php | 0 .../modules/custom/sw_base/-sw_base.info.yml | 0 .../modules/custom/sw_base/-sw_base.module | 0 .../-CreateContentModelDeployStep.php | 0 .../-EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-pages.feature | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../custom/sw_demo/-sw_demo.deploy.php | 0 .../modules/custom/sw_demo/-sw_demo.info.yml | 0 .../custom/sw_demo/-sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/-sw_demo.module | 0 .../install/-views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/-sw_demo.css | 0 .../web/modules/custom/sw_demo/js/-sw_demo.js | 0 .../custom/sw_demo/js/tests/-sw_demo.test.js | 0 .../src/Plugin/Block/-CounterBlock.php | 0 .../Plugin/GeneratedContent/Node/-Page.php | 0 .../-sw-demo-counter-block.html.twig | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-pages.feature | 0 .../custom/sw_base/-sw_base.deploy.php | 0 .../modules/custom/sw_base/-sw_base.info.yml | 0 .../modules/custom/sw_base/-sw_base.module | 0 .../-CreateContentModelDeployStep.php | 0 .../-EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../custom/sw_demo/-sw_demo.deploy.php | 0 .../modules/custom/sw_demo/-sw_demo.info.yml | 0 .../custom/sw_demo/-sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/-sw_demo.module | 0 .../install/-views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/-sw_demo.css | 0 .../web/modules/custom/sw_demo/js/-sw_demo.js | 0 .../custom/sw_demo/js/tests/-sw_demo.test.js | 0 .../src/Plugin/Block/-CounterBlock.php | 0 .../Plugin/GeneratedContent/Node/-Page.php | 0 .../-sw-demo-counter-block.html.twig | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../.ahoy.yml | 0 .../.docker/-solr.dockerfile | 0 .../config/solr/config-set/-accents_ar.txt | 0 .../config/solr/config-set/-accents_bg.txt | 0 .../config/solr/config-set/-accents_ca.txt | 0 .../config/solr/config-set/-accents_cs.txt | 0 .../config/solr/config-set/-accents_cy.txt | 0 .../config/solr/config-set/-accents_da.txt | 0 .../config/solr/config-set/-accents_de.txt | 0 .../config/solr/config-set/-accents_el.txt | 0 .../config/solr/config-set/-accents_en.txt | 0 .../config/solr/config-set/-accents_es.txt | 0 .../config/solr/config-set/-accents_et.txt | 0 .../config/solr/config-set/-accents_fa.txt | 0 .../config/solr/config-set/-accents_fi.txt | 0 .../config/solr/config-set/-accents_fr.txt | 0 .../config/solr/config-set/-accents_ga.txt | 0 .../config/solr/config-set/-accents_hi.txt | 0 .../config/solr/config-set/-accents_hr.txt | 0 .../config/solr/config-set/-accents_hu.txt | 0 .../config/solr/config-set/-accents_id.txt | 0 .../config/solr/config-set/-accents_it.txt | 0 .../config/solr/config-set/-accents_lv.txt | 0 .../config/solr/config-set/-accents_nb.txt | 0 .../config/solr/config-set/-accents_nl.txt | 0 .../config/solr/config-set/-accents_nn.txt | 0 .../config/solr/config-set/-accents_pl.txt | 0 .../config/solr/config-set/-accents_pt_br.txt | 0 .../config/solr/config-set/-accents_pt_pt.txt | 0 .../config/solr/config-set/-accents_ro.txt | 0 .../config/solr/config-set/-accents_ru.txt | 0 .../config/solr/config-set/-accents_sk.txt | 0 .../config/solr/config-set/-accents_sr.txt | 0 .../config/solr/config-set/-accents_sv.txt | 0 .../config/solr/config-set/-accents_th.txt | 0 .../config/solr/config-set/-accents_tr.txt | 0 .../config/solr/config-set/-accents_uk.txt | 0 .../config/solr/config-set/-accents_und.txt | 0 .../config/solr/config-set/-elevate.xml | 0 .../config/solr/config-set/-nouns_ar.txt | 0 .../config/solr/config-set/-nouns_bg.txt | 0 .../config/solr/config-set/-nouns_ca.txt | 0 .../config/solr/config-set/-nouns_cy.txt | 0 .../config/solr/config-set/-nouns_da.txt | 0 .../config/solr/config-set/-nouns_de.txt | 0 .../config/solr/config-set/-nouns_el.txt | 0 .../config/solr/config-set/-nouns_es.txt | 0 .../config/solr/config-set/-nouns_et.txt | 0 .../config/solr/config-set/-nouns_fa.txt | 0 .../config/solr/config-set/-nouns_fi.txt | 0 .../config/solr/config-set/-nouns_fr.txt | 0 .../config/solr/config-set/-nouns_hi.txt | 0 .../config/solr/config-set/-nouns_it.txt | 0 .../config/solr/config-set/-nouns_nb.txt | 0 .../config/solr/config-set/-nouns_nl.txt | 0 .../config/solr/config-set/-nouns_nn.txt | 0 .../config/solr/config-set/-nouns_pl.txt | 0 .../config/solr/config-set/-nouns_pt_br.txt | 0 .../config/solr/config-set/-nouns_pt_pt.txt | 0 .../config/solr/config-set/-nouns_ro.txt | 0 .../config/solr/config-set/-nouns_ru.txt | 0 .../config/solr/config-set/-nouns_sv.txt | 0 .../config/solr/config-set/-nouns_th.txt | 0 .../config/solr/config-set/-nouns_tr.txt | 0 .../config/solr/config-set/-nouns_uk.txt | 0 .../config/solr/config-set/-protwords_ar.txt | 0 .../config/solr/config-set/-protwords_bg.txt | 0 .../config/solr/config-set/-protwords_ca.txt | 0 .../config/solr/config-set/-protwords_cs.txt | 0 .../config/solr/config-set/-protwords_cy.txt | 0 .../config/solr/config-set/-protwords_da.txt | 0 .../config/solr/config-set/-protwords_de.txt | 0 .../config/solr/config-set/-protwords_el.txt | 0 .../config/solr/config-set/-protwords_en.txt | 0 .../config/solr/config-set/-protwords_es.txt | 0 .../config/solr/config-set/-protwords_et.txt | 0 .../config/solr/config-set/-protwords_fa.txt | 0 .../config/solr/config-set/-protwords_fi.txt | 0 .../config/solr/config-set/-protwords_fr.txt | 0 .../config/solr/config-set/-protwords_ga.txt | 0 .../config/solr/config-set/-protwords_hi.txt | 0 .../config/solr/config-set/-protwords_hr.txt | 0 .../config/solr/config-set/-protwords_hu.txt | 0 .../config/solr/config-set/-protwords_id.txt | 0 .../config/solr/config-set/-protwords_it.txt | 0 .../config/solr/config-set/-protwords_lv.txt | 0 .../config/solr/config-set/-protwords_nb.txt | 0 .../config/solr/config-set/-protwords_nl.txt | 0 .../config/solr/config-set/-protwords_nn.txt | 0 .../config/solr/config-set/-protwords_pl.txt | 0 .../solr/config-set/-protwords_pt_br.txt | 0 .../solr/config-set/-protwords_pt_pt.txt | 0 .../config/solr/config-set/-protwords_ro.txt | 0 .../config/solr/config-set/-protwords_ru.txt | 0 .../config/solr/config-set/-protwords_sk.txt | 0 .../config/solr/config-set/-protwords_sr.txt | 0 .../config/solr/config-set/-protwords_sv.txt | 0 .../config/solr/config-set/-protwords_th.txt | 0 .../config/solr/config-set/-protwords_tr.txt | 0 .../config/solr/config-set/-protwords_uk.txt | 0 .../config/solr/config-set/-protwords_und.txt | 0 .../config/solr/config-set/-schema.xml | 0 .../solr/config-set/-schema_extra_fields.xml | 0 .../solr/config-set/-schema_extra_types.xml | 0 .../config/solr/config-set/-solrconfig.xml | 0 .../solr/config-set/-solrconfig_extra.xml | 0 .../solr/config-set/-solrconfig_index.xml | 0 .../solr/config-set/-solrconfig_query.xml | 0 .../-solrconfig_requestdispatcher.xml | 0 .../solr/config-set/-solrcore.properties | 0 .../config/solr/config-set/-stoptags_ja.txt | 0 .../config/solr/config-set/-stopwords_ar.txt | 0 .../config/solr/config-set/-stopwords_bg.txt | 0 .../config/solr/config-set/-stopwords_ca.txt | 0 .../config/solr/config-set/-stopwords_cs.txt | 0 .../config/solr/config-set/-stopwords_cy.txt | 0 .../config/solr/config-set/-stopwords_da.txt | 0 .../config/solr/config-set/-stopwords_de.txt | 0 .../config/solr/config-set/-stopwords_el.txt | 0 .../config/solr/config-set/-stopwords_en.txt | 0 .../config/solr/config-set/-stopwords_es.txt | 0 .../config/solr/config-set/-stopwords_et.txt | 0 .../config/solr/config-set/-stopwords_fa.txt | 0 .../config/solr/config-set/-stopwords_fi.txt | 0 .../config/solr/config-set/-stopwords_fr.txt | 0 .../config/solr/config-set/-stopwords_ga.txt | 0 .../config/solr/config-set/-stopwords_hi.txt | 0 .../config/solr/config-set/-stopwords_hr.txt | 0 .../config/solr/config-set/-stopwords_hu.txt | 0 .../config/solr/config-set/-stopwords_id.txt | 0 .../config/solr/config-set/-stopwords_it.txt | 0 .../config/solr/config-set/-stopwords_ja.txt | 0 .../config/solr/config-set/-stopwords_ko.txt | 0 .../config/solr/config-set/-stopwords_lv.txt | 0 .../config/solr/config-set/-stopwords_nb.txt | 0 .../config/solr/config-set/-stopwords_nl.txt | 0 .../config/solr/config-set/-stopwords_nn.txt | 0 .../config/solr/config-set/-stopwords_pl.txt | 0 .../solr/config-set/-stopwords_pt_br.txt | 0 .../solr/config-set/-stopwords_pt_pt.txt | 0 .../config/solr/config-set/-stopwords_ro.txt | 0 .../config/solr/config-set/-stopwords_ru.txt | 0 .../config/solr/config-set/-stopwords_sk.txt | 0 .../config/solr/config-set/-stopwords_sr.txt | 0 .../config/solr/config-set/-stopwords_sv.txt | 0 .../config/solr/config-set/-stopwords_th.txt | 0 .../config/solr/config-set/-stopwords_tr.txt | 0 .../config/solr/config-set/-stopwords_uk.txt | 0 .../config/solr/config-set/-stopwords_und.txt | 0 .../config/solr/config-set/-synonyms_ar.txt | 0 .../config/solr/config-set/-synonyms_bg.txt | 0 .../config/solr/config-set/-synonyms_ca.txt | 0 .../config/solr/config-set/-synonyms_cs.txt | 0 .../config/solr/config-set/-synonyms_cy.txt | 0 .../config/solr/config-set/-synonyms_da.txt | 0 .../config/solr/config-set/-synonyms_de.txt | 0 .../config/solr/config-set/-synonyms_el.txt | 0 .../config/solr/config-set/-synonyms_en.txt | 0 .../config/solr/config-set/-synonyms_es.txt | 0 .../config/solr/config-set/-synonyms_et.txt | 0 .../config/solr/config-set/-synonyms_fa.txt | 0 .../config/solr/config-set/-synonyms_fi.txt | 0 .../config/solr/config-set/-synonyms_fr.txt | 0 .../config/solr/config-set/-synonyms_ga.txt | 0 .../config/solr/config-set/-synonyms_hi.txt | 0 .../config/solr/config-set/-synonyms_hr.txt | 0 .../config/solr/config-set/-synonyms_hu.txt | 0 .../config/solr/config-set/-synonyms_id.txt | 0 .../config/solr/config-set/-synonyms_it.txt | 0 .../config/solr/config-set/-synonyms_lv.txt | 0 .../config/solr/config-set/-synonyms_nb.txt | 0 .../config/solr/config-set/-synonyms_nl.txt | 0 .../config/solr/config-set/-synonyms_nn.txt | 0 .../config/solr/config-set/-synonyms_pl.txt | 0 .../solr/config-set/-synonyms_pt_br.txt | 0 .../solr/config-set/-synonyms_pt_pt.txt | 0 .../config/solr/config-set/-synonyms_ro.txt | 0 .../config/solr/config-set/-synonyms_ru.txt | 0 .../config/solr/config-set/-synonyms_sk.txt | 0 .../config/solr/config-set/-synonyms_sr.txt | 0 .../config/solr/config-set/-synonyms_sv.txt | 0 .../config/solr/config-set/-synonyms_th.txt | 0 .../config/solr/config-set/-synonyms_tr.txt | 0 .../config/solr/config-set/-synonyms_uk.txt | 0 .../config/solr/config-set/-synonyms_und.txt | 0 .../custom_modules_search_without_solr/.env | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../tests/behat/features/-search.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../includes/modules/-settings.search_api.php | 0 .../db_fetch_source_acquia/.env | 0 .../db_fetch_source_acquia/.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../db_fetch_source_container_registry/.env | 0 .../.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/db_fetch_source_ftp/.env | 0 .../db_fetch_source_ftp/.env.local.example | 0 .../db_fetch_source_lagoon/.env | 0 .../db_fetch_source_lagoon/.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/db_fetch_source_s3/.env | 0 .../db_fetch_source_s3/.env.local.example | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../deploy_types_all_circleci/.dockerignore | 0 .../deploy_types_all_circleci/.env | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../.gitignore.artifact | 0 .../deploy_types_all_circleci/README.md | 0 .../deploy_types_all_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../handler_process/deploy_types_all_gha/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../deploy_types_all_gha/.gitignore.artifact | 0 .../deploy_types_artifact/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../deploy_types_artifact/.gitignore.artifact | 0 .../deploy_types_container_image/.env | 0 .../handler_process/deploy_types_lagoon/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../deploy_types_none_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../deploy_types_none_circleci/.dockerignore | 0 .../deploy_types_none_circleci/.env | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../deploy_types_none_circleci/README.md | 0 .../docs/-deployment.md | 0 .../deploy_types_none_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../deploy_types_none_gha/.ahoy.yml | 0 .../deploy_types_none_gha/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../deploy_types_none_gha/docs/-deployment.md | 0 .../deploy_types_webhook/.ignorecontent | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.circleci/update-dependencies.yml | 0 .../.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../.github/workflows/update-dependencies.yml | 0 .../README.md | 0 .../docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../.github/workflows/update-dependencies.yml | 0 .../.ignorecontent | 0 .../deps_updates_provider_none/-renovate.json | 0 .../.github/workflows/update-dependencies.yml | 0 .../deps_updates_provider_none/README.md | 0 .../handler_process/frontend_build_skip/.env | 0 .../gitleaks_disabled/-.gitleaks.toml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../hosting_acquia/.docker/cli.dockerfile | 0 .../.docker/nginx-drupal.dockerfile | 0 .../hosting_acquia/.dockerignore | 0 .../handler_process/hosting_acquia/.env | 0 .../hosting_acquia/.env.local.example | 0 .../hosting_acquia/.eslintignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/hosting_acquia/.gitignore | 0 .../hosting_acquia/.gitignore.artifact | 0 .../hosting_acquia/.gitleaks.toml | 0 .../hosting_acquia/.twig-cs-fixer.php | 0 .../handler_process/hosting_acquia/AGENTS.md | 0 .../handler_process/hosting_acquia/README.md | 0 .../handler_process/hosting_acquia/behat.yml | 0 .../hosting_acquia/composer.json | 0 .../hosting_acquia/docker-compose.yml | 0 .../hosting_acquia/docroot/.htaccess | 0 .../hosting_acquia/docroot/autoload.php | 0 .../docroot/autoload_runtime.php | 0 .../hosting_acquia/docroot/index.php | 0 .../CreateContentModelDeployStep.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../modules/custom/sw_base/sw_base.info.yml | 0 .../modules/custom/sw_base/sw_base.module | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/ExampleTest.php | 0 .../tests/src/Kernel/SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/ArrayTrait.php | 0 .../sw_base/tests/src/Traits/AssertTrait.php | 0 .../src/Traits/BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/MockTrait.php | 0 .../tests/src/Traits/ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/SwBaseUnitTestBase.php | 0 .../install/views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/sw_demo.css | 0 .../modules/custom/sw_demo/js/sw_demo.js | 0 .../custom/sw_demo/js/tests/sw_demo.test.js | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../src/Plugin/GeneratedContent/Node/Page.php | 0 .../modules/custom/sw_demo/sw_demo.deploy.php | 0 .../modules/custom/sw_demo/sw_demo.info.yml | 0 .../custom/sw_demo/sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/sw_demo.module | 0 .../templates/sw-demo-counter-block.html.twig | 0 .../FunctionalJavascript/CounterBlockTest.php | 0 .../tests/src/Kernel/CounterBlockTest.php | 0 .../tests/src/Unit/CounterBlockTest.php | 0 .../install/search_api.index.content.yml | 0 .../config/install/search_api.server.solr.yml | 0 .../config/install/views.view.search.yml | 0 .../Plugin/DeployStep/RebuildSearchIndex.php | 0 .../custom/sw_search/sw_search.deploy.php | 0 .../custom/sw_search/sw_search.info.yml | 0 .../custom/sw_search/sw_search.install | 0 .../sites/default/default.services.yml | 0 .../sites/default/default.settings.php | 0 .../sites/default/example.services.local.yml | 0 .../sites/default/example.settings.local.php | 0 .../modules/settings.automated_cron.php | 0 .../includes/modules/settings.clamav.php | 0 .../modules/settings.config_split.php | 0 .../includes/modules/settings.devel.php | 0 .../settings.environment_indicator.php | 0 .../includes/modules/settings.fast404.php | 0 .../modules/settings.generated_content.php | 0 .../includes/modules/settings.redis.php | 0 .../modules/settings.reroute_email.php | 0 .../includes/modules/settings.robotstxt.php | 0 .../includes/modules/settings.search_api.php | 0 .../includes/modules/settings.seckit.php | 0 .../includes/modules/settings.shield.php | 0 .../modules/settings.stage_file_proxy.php | 0 .../includes/modules/settings.sw_base.php | 0 .../includes/modules/settings.system.php | 0 .../includes/modules/settings.testmode.php | 0 .../modules/settings.trusted_hosts.php | 0 .../includes/modules/settings.xmlsitemap.php | 0 .../docroot/sites/default/services.yml | 0 .../docroot/sites/default/settings.php | 0 .../themes/custom/star_wars/.eslintrc.json | 0 .../themes/custom/star_wars/.gitignore | 0 .../docroot/themes/custom/star_wars/.npmrc | 0 .../themes/custom/star_wars/.prettierignore | 0 .../themes/custom/star_wars/.prettierrc.json | 0 .../themes/custom/star_wars/.stylelintrc.json | 0 .../docroot/themes/custom/star_wars/README.md | 0 .../components/button/button.component.yml | 0 .../star_wars/components/button/button.css | 0 .../star_wars/components/button/button.twig | 0 .../themes/custom/star_wars/fonts/.gitkeep | 0 .../themes/custom/star_wars/images/.gitkeep | 0 .../themes/custom/star_wars/js/star_wars.js | 0 .../docroot/themes/custom/star_wars/logo.svg | 0 .../themes/custom/star_wars/package.json | 0 .../themes/custom/star_wars/patches/.gitkeep | 0 .../themes/custom/star_wars/postcss.config.js | 0 .../custom/star_wars/scss/_components.scss | 0 .../themes/custom/star_wars/scss/_fonts.scss | 0 .../themes/custom/star_wars/scss/_mixins.scss | 0 .../themes/custom/star_wars/scss/_rem.scss | 0 .../custom/star_wars/scss/_variables.scss | 0 .../star_wars/scss/components/_header.scss | 0 .../themes/custom/star_wars/scss/styles.scss | 0 .../custom/star_wars/star_wars.info.yml | 0 .../custom/star_wars/star_wars.libraries.yml | 0 .../themes/custom/star_wars/star_wars.theme | 0 .../layout/region--footer-bottom.html.twig | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/StarWarsUnitTestBase.php | 0 .../hosting_acquia/docs/deployment.md | 0 .../hosting_acquia/hooks/README.txt | 0 .../hooks/common/post-code-deploy | 0 .../common/post-code-update/1.provision.sh | 0 .../common/post-code-update/2.purge-cache.sh | 0 .../post-code-update/3.notify-deployment.sh | 0 .../hosting_acquia/hooks/common/post-db-copy | 0 .../hosting_acquia/hooks/library/copy-db.sh | 0 .../hooks/library/copy-files.sh | 0 .../hosting_acquia/hooks/library/domains.txt | 0 .../hooks/library/notify-deployment.sh | 0 .../hosting_acquia/hooks/library/provision.sh | 0 .../hooks/library/purge-cache.sh | 0 .../hooks/prod/post-code-deploy/.gitkeep | 0 .../hooks/prod/post-code-update | 0 .../hosting_acquia/jest.config.js | 0 .../hosting_acquia/package.json | 0 .../handler_process/hosting_acquia/phpcs.xml | 0 .../hosting_acquia/phpstan.neon | 0 .../hosting_acquia/phpunit.xml | 0 .../handler_process/hosting_acquia/rector.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../tests/phpunit/bootstrap.php | 0 .../hosting_acquia/web/-autoload.php | 0 .../hosting_acquia/web/-autoload_runtime.php | 0 .../hosting_acquia/web/-index.php | 0 .../custom/sw_base/-sw_base.deploy.php | 0 .../modules/custom/sw_base/-sw_base.info.yml | 0 .../modules/custom/sw_base/-sw_base.module | 0 .../-CreateContentModelDeployStep.php | 0 .../-EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../custom/sw_demo/-sw_demo.deploy.php | 0 .../modules/custom/sw_demo/-sw_demo.info.yml | 0 .../custom/sw_demo/-sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/-sw_demo.module | 0 .../install/-views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/-sw_demo.css | 0 .../web/modules/custom/sw_demo/js/-sw_demo.js | 0 .../custom/sw_demo/js/tests/-sw_demo.test.js | 0 .../src/Plugin/Block/-CounterBlock.php | 0 .../Plugin/GeneratedContent/Node/-Page.php | 0 .../-sw-demo-counter-block.html.twig | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../web/sites/default/-default.services.yml | 0 .../web/sites/default/-default.settings.php | 0 .../sites/default/-example.services.local.yml | 0 .../sites/default/-example.settings.local.php | 0 .../web/sites/default/-services.yml | 0 .../web/sites/default/-settings.php | 0 .../modules/-settings.automated_cron.php | 0 .../includes/modules/-settings.clamav.php | 0 .../modules/-settings.config_split.php | 0 .../includes/modules/-settings.devel.php | 0 .../-settings.environment_indicator.php | 0 .../includes/modules/-settings.fast404.php | 0 .../modules/-settings.generated_content.php | 0 .../includes/modules/-settings.redis.php | 0 .../modules/-settings.reroute_email.php | 0 .../includes/modules/-settings.robotstxt.php | 0 .../includes/modules/-settings.search_api.php | 0 .../includes/modules/-settings.seckit.php | 0 .../includes/modules/-settings.shield.php | 0 .../modules/-settings.stage_file_proxy.php | 0 .../includes/modules/-settings.sw_base.php | 0 .../includes/modules/-settings.system.php | 0 .../includes/modules/-settings.testmode.php | 0 .../modules/-settings.trusted_hosts.php | 0 .../includes/modules/-settings.xmlsitemap.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../handler_process/hosting_lagoon/.env | 0 .../hosting_lagoon/.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/close-pull-request.yml | 0 .../hosting_lagoon/.lagoon.yml | 0 .../handler_process/hosting_lagoon/README.md | 0 .../hosting_lagoon/composer.json | 0 .../hosting_lagoon/docker-compose.yml | 0 .../hosting_lagoon/docs/deployment.md | 0 .../drush/sites/lagoon.site.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../.docker/cli.dockerfile | 0 .../.docker/nginx-drupal.dockerfile | 0 .../.dockerignore | 0 .../hosting_project_name___acquia/.env | 0 .../.env.local.example | 0 .../.eslintignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../hosting_project_name___acquia/.gitignore | 0 .../.gitignore.artifact | 0 .../.gitleaks.toml | 0 .../.twig-cs-fixer.php | 0 .../hosting_project_name___acquia/AGENTS.md | 0 .../hosting_project_name___acquia/README.md | 0 .../hosting_project_name___acquia/behat.yml | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../docroot/.htaccess | 0 .../docroot/autoload.php | 0 .../docroot/autoload_runtime.php | 0 .../docroot/index.php | 0 .../CreateContentModelDeployStep.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../modules/custom/sw_base/sw_base.info.yml | 0 .../modules/custom/sw_base/sw_base.module | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/ExampleTest.php | 0 .../tests/src/Kernel/SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/ArrayTrait.php | 0 .../sw_base/tests/src/Traits/AssertTrait.php | 0 .../src/Traits/BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/MockTrait.php | 0 .../tests/src/Traits/ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/SwBaseUnitTestBase.php | 0 .../install/views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/sw_demo.css | 0 .../modules/custom/sw_demo/js/sw_demo.js | 0 .../custom/sw_demo/js/tests/sw_demo.test.js | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../src/Plugin/GeneratedContent/Node/Page.php | 0 .../modules/custom/sw_demo/sw_demo.deploy.php | 0 .../modules/custom/sw_demo/sw_demo.info.yml | 0 .../custom/sw_demo/sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/sw_demo.module | 0 .../templates/sw-demo-counter-block.html.twig | 0 .../FunctionalJavascript/CounterBlockTest.php | 0 .../tests/src/Kernel/CounterBlockTest.php | 0 .../tests/src/Unit/CounterBlockTest.php | 0 .../install/search_api.index.content.yml | 0 .../config/install/search_api.server.solr.yml | 0 .../config/install/views.view.search.yml | 0 .../Plugin/DeployStep/RebuildSearchIndex.php | 0 .../custom/sw_search/sw_search.deploy.php | 0 .../custom/sw_search/sw_search.info.yml | 0 .../custom/sw_search/sw_search.install | 0 .../sites/default/default.services.yml | 0 .../sites/default/default.settings.php | 0 .../sites/default/example.services.local.yml | 0 .../sites/default/example.settings.local.php | 0 .../modules/settings.automated_cron.php | 0 .../includes/modules/settings.clamav.php | 0 .../modules/settings.config_split.php | 0 .../includes/modules/settings.devel.php | 0 .../settings.environment_indicator.php | 0 .../includes/modules/settings.fast404.php | 0 .../modules/settings.generated_content.php | 0 .../includes/modules/settings.redis.php | 0 .../modules/settings.reroute_email.php | 0 .../includes/modules/settings.robotstxt.php | 0 .../includes/modules/settings.search_api.php | 0 .../includes/modules/settings.seckit.php | 0 .../includes/modules/settings.shield.php | 0 .../modules/settings.stage_file_proxy.php | 0 .../includes/modules/settings.sw_base.php | 0 .../includes/modules/settings.system.php | 0 .../includes/modules/settings.testmode.php | 0 .../modules/settings.trusted_hosts.php | 0 .../includes/modules/settings.xmlsitemap.php | 0 .../docroot/sites/default/services.yml | 0 .../docroot/sites/default/settings.php | 0 .../themes/custom/star_wars/.eslintrc.json | 0 .../themes/custom/star_wars/.gitignore | 0 .../docroot/themes/custom/star_wars/.npmrc | 0 .../themes/custom/star_wars/.prettierignore | 0 .../themes/custom/star_wars/.prettierrc.json | 0 .../themes/custom/star_wars/.stylelintrc.json | 0 .../docroot/themes/custom/star_wars/README.md | 0 .../components/button/button.component.yml | 0 .../star_wars/components/button/button.css | 0 .../star_wars/components/button/button.twig | 0 .../themes/custom/star_wars/fonts/.gitkeep | 0 .../themes/custom/star_wars/images/.gitkeep | 0 .../themes/custom/star_wars/js/star_wars.js | 0 .../docroot/themes/custom/star_wars/logo.svg | 0 .../themes/custom/star_wars/package.json | 0 .../themes/custom/star_wars/patches/.gitkeep | 0 .../themes/custom/star_wars/postcss.config.js | 0 .../custom/star_wars/scss/_components.scss | 0 .../themes/custom/star_wars/scss/_fonts.scss | 0 .../themes/custom/star_wars/scss/_mixins.scss | 0 .../themes/custom/star_wars/scss/_rem.scss | 0 .../custom/star_wars/scss/_variables.scss | 0 .../star_wars/scss/components/_header.scss | 0 .../themes/custom/star_wars/scss/styles.scss | 0 .../custom/star_wars/star_wars.info.yml | 0 .../custom/star_wars/star_wars.libraries.yml | 0 .../themes/custom/star_wars/star_wars.theme | 0 .../layout/region--footer-bottom.html.twig | 0 .../tests/src/Functional/ExampleTest.php | 0 .../Functional/StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 .../StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/StarWarsUnitTestBase.php | 0 .../docs/deployment.md | 0 .../hooks/README.txt | 0 .../hooks/common/post-code-deploy | 0 .../common/post-code-update/1.provision.sh | 0 .../common/post-code-update/2.purge-cache.sh | 0 .../post-code-update/3.notify-deployment.sh | 0 .../hooks/common/post-db-copy | 0 .../hooks/library/copy-db.sh | 0 .../hooks/library/copy-files.sh | 0 .../hooks/library/domains.txt | 0 .../hooks/library/notify-deployment.sh | 0 .../hooks/library/provision.sh | 0 .../hooks/library/purge-cache.sh | 0 .../hooks/prod/post-code-deploy/.gitkeep | 0 .../hooks/prod/post-code-update | 0 .../jest.config.js | 0 .../package.json | 0 .../hosting_project_name___acquia/phpcs.xml | 0 .../phpstan.neon | 0 .../hosting_project_name___acquia/phpunit.xml | 0 .../hosting_project_name___acquia/rector.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../tests/phpunit/bootstrap.php | 0 .../web/-autoload.php | 0 .../web/-autoload_runtime.php | 0 .../web/-index.php | 0 .../custom/sw_base/-sw_base.deploy.php | 0 .../modules/custom/sw_base/-sw_base.info.yml | 0 .../modules/custom/sw_base/-sw_base.module | 0 .../-CreateContentModelDeployStep.php | 0 .../-EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../custom/sw_demo/-sw_demo.deploy.php | 0 .../modules/custom/sw_demo/-sw_demo.info.yml | 0 .../custom/sw_demo/-sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/-sw_demo.module | 0 .../install/-views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/-sw_demo.css | 0 .../web/modules/custom/sw_demo/js/-sw_demo.js | 0 .../custom/sw_demo/js/tests/-sw_demo.test.js | 0 .../src/Plugin/Block/-CounterBlock.php | 0 .../Plugin/GeneratedContent/Node/-Page.php | 0 .../-sw-demo-counter-block.html.twig | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../web/sites/default/-default.services.yml | 0 .../web/sites/default/-default.settings.php | 0 .../sites/default/-example.services.local.yml | 0 .../sites/default/-example.settings.local.php | 0 .../web/sites/default/-services.yml | 0 .../web/sites/default/-settings.php | 0 .../modules/-settings.automated_cron.php | 0 .../includes/modules/-settings.clamav.php | 0 .../modules/-settings.config_split.php | 0 .../includes/modules/-settings.devel.php | 0 .../-settings.environment_indicator.php | 0 .../includes/modules/-settings.fast404.php | 0 .../modules/-settings.generated_content.php | 0 .../includes/modules/-settings.redis.php | 0 .../modules/-settings.reroute_email.php | 0 .../includes/modules/-settings.robotstxt.php | 0 .../includes/modules/-settings.search_api.php | 0 .../includes/modules/-settings.seckit.php | 0 .../includes/modules/-settings.shield.php | 0 .../modules/-settings.stage_file_proxy.php | 0 .../includes/modules/-settings.sw_base.php | 0 .../includes/modules/-settings.system.php | 0 .../includes/modules/-settings.testmode.php | 0 .../modules/-settings.trusted_hosts.php | 0 .../includes/modules/-settings.xmlsitemap.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../hosting_project_name___lagoon/.env | 0 .../.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/close-pull-request.yml | 0 .../hosting_project_name___lagoon/.lagoon.yml | 0 .../hosting_project_name___lagoon/README.md | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../docs/deployment.md | 0 .../drush/sites/lagoon.site.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../workflows/-label-merge-conflict.yml | 0 .../.ignorecontent | 0 .../migration_disabled/.ignorecontent | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../migration_disabled_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../migration_disabled_circleci/README.md | 0 .../migration_disabled_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../migration_disabled_lagoon/.env | 0 .../.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/close-pull-request.yml | 0 .../migration_disabled_lagoon/.lagoon.yml | 0 .../migration_disabled_lagoon/README.md | 0 .../migration_disabled_lagoon/composer.json | 0 .../docker-compose.yml | 0 .../docs/deployment.md | 0 .../drush/sites/lagoon.site.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../migration_enabled/.ahoy.yml | 0 .../handler_process/migration_enabled/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../migration_enabled/composer.json | 0 .../migration_enabled/docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_enabled_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../migration_enabled_circleci/.dockerignore | 0 .../migration_enabled_circleci/.env | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../migration_enabled_circleci/README.md | 0 .../migration_enabled_circleci/composer.json | 0 .../docker-compose.yml | 0 .../migration_enabled_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_enabled_lagoon/.ahoy.yml | 0 .../migration_enabled_lagoon/.env | 0 .../.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/close-pull-request.yml | 0 .../migration_enabled_lagoon/.lagoon.yml | 0 .../migration_enabled_lagoon/README.md | 0 .../migration_enabled_lagoon/composer.json | 0 .../docker-compose.yml | 0 .../docs/deployment.md | 0 .../drush/sites/lagoon.site.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_fetch_source_acquia/.ahoy.yml | 0 .../migration_fetch_source_acquia/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../.ahoy.yml | 0 .../.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_fetch_source_ftp/.ahoy.yml | 0 .../migration_fetch_source_ftp/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../migration_fetch_source_ftp/composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_fetch_source_lagoon/.ahoy.yml | 0 .../migration_fetch_source_lagoon/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_fetch_source_s3/.ahoy.yml | 0 .../migration_fetch_source_s3/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../migration_fetch_source_s3/composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../migration_fetch_source_url/.ahoy.yml | 0 .../migration_fetch_source_url/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../migration_fetch_source_url/composer.json | 0 .../docker-compose.yml | 0 .../phpunit/Drupal/DatabaseSettingsTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../migrations/ys_migrate_categories.yml | 0 .../DeployStep/MigrateContentDeployStep.php | 0 .../custom/ys_migrate/ys_migrate.info.yml | 0 .../web/sites/default/settings.migration.php | 0 .../web/sites/default/settings.php | 0 .../modules_no_admin_toolbar/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_coffee/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_config_split/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/-settings.config_split.php | 0 .../modules_no_config_update/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_devel/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.devel.php | 0 .../modules_no_drupal_helpers/composer.json | 0 .../composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../-settings.environment_indicator.php | 0 .../composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../modules/-settings.generated_content.php | 0 .../composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_pathauto/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_redirect/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_reroute_email/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/-settings.reroute_email.php | 0 .../modules_no_robotstxt/composer.json | 0 .../tests/behat/features/-robotstxt.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.robotstxt.php | 0 .../modules_no_sdc_devel/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../modules_no_sdc_devel/composer.json | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules_no_seckit/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../includes/modules/-settings.seckit.php | 0 .../.env | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.seckit.php | 0 .../includes/modules/-settings.shield.php | 0 .../modules/-settings.stage_file_proxy.php | 0 .../handler_process/modules_no_shield/.env | 0 .../modules_no_shield/composer.json | 0 .../modules_no_shield/docker-compose.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.shield.php | 0 .../modules_no_stage_file_proxy/.env | 0 .../modules_no_stage_file_proxy/composer.json | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/-settings.stage_file_proxy.php | 0 .../modules_no_testmode/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../includes/modules/-settings.testmode.php | 0 .../modules_no_xmlsitemap/composer.json | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.xmlsitemap.php | 0 .../handler_process/modules_none/.ahoy.yml | 0 .../handler_process/modules_none/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../modules_none/composer.json | 0 .../modules_none/docker-compose.yml | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../modules/-settings.config_split.php | 0 .../includes/modules/-settings.devel.php | 0 .../-settings.environment_indicator.php | 0 .../modules/-settings.generated_content.php | 0 .../modules/-settings.reroute_email.php | 0 .../includes/modules/-settings.robotstxt.php | 0 .../includes/modules/-settings.seckit.php | 0 .../includes/modules/-settings.shield.php | 0 .../modules/-settings.stage_file_proxy.php | 0 .../includes/modules/-settings.testmode.php | 0 .../includes/modules/-settings.xmlsitemap.php | 0 .../names/.docker/cli.dockerfile | 0 .../.docker/config/nginx/redirects-map.conf | 0 .../tests/Fixtures/handler_process/names/.env | 0 .../Fixtures/handler_process/names/AGENTS.md | 0 .../Fixtures/handler_process/names/README.md | 0 .../handler_process/names/composer.json | 0 .../handler_process/names/docs/deployment.md | 0 .../handler_process/names/package.json | 0 .../tests/behat/features/counter.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../custom/sw_base/-sw_base.deploy.php | 0 .../modules/custom/sw_base/-sw_base.info.yml | 0 .../modules/custom/sw_base/-sw_base.module | 0 .../-CreateContentModelDeployStep.php | 0 .../-EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../custom/sw_demo/-sw_demo.deploy.php | 0 .../modules/custom/sw_demo/-sw_demo.info.yml | 0 .../custom/sw_demo/-sw_demo.libraries.yml | 0 .../modules/custom/sw_demo/-sw_demo.module | 0 .../install/-views.view.sw_demo_pages.yml | 0 .../modules/custom/sw_demo/css/-sw_demo.css | 0 .../web/modules/custom/sw_demo/js/-sw_demo.js | 0 .../custom/sw_demo/js/tests/-sw_demo.test.js | 0 .../src/Plugin/Block/-CounterBlock.php | 0 .../Plugin/GeneratedContent/Node/-Page.php | 0 .../-sw-demo-counter-block.html.twig | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../CreateContentModelDeployStep.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../tests/src/Functional/ExampleTest.php | 0 .../TheForceBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 ...eForceBaseFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/TheForceBaseKernelTestBase.php | 0 .../tests/src/Traits/ArrayTrait.php | 0 .../tests/src/Traits/AssertTrait.php | 0 .../src/Traits/BrowserHtmlDebugTrait.php | 0 .../tests/src/Traits/MockTrait.php | 0 .../tests/src/Traits/ReflectionTrait.php | 0 .../tests/src/Unit/ExampleTest.php | 0 .../src/Unit/TheForceBaseUnitTestBase.php | 0 .../the_force_base/the_force_base.deploy.php | 0 .../the_force_base/the_force_base.info.yml | 0 .../the_force_base/the_force_base.module | 0 .../views.view.the_force_demo_pages.yml | 0 .../the_force_demo/css/the_force_demo.css | 0 .../js/tests/the_force_demo.test.js | 0 .../the_force_demo/js/the_force_demo.js | 0 .../src/Plugin/Block/CounterBlock.php | 0 .../src/Plugin/GeneratedContent/Node/Page.php | 0 .../the-force-demo-counter-block.html.twig | 0 .../FunctionalJavascript/CounterBlockTest.php | 0 .../tests/src/Kernel/CounterBlockTest.php | 0 .../tests/src/Unit/CounterBlockTest.php | 0 .../the_force_demo/the_force_demo.deploy.php | 0 .../the_force_demo/the_force_demo.info.yml | 0 .../the_force_demo.libraries.yml | 0 .../the_force_demo/the_force_demo.module | 0 .../install/search_api.index.content.yml | 0 .../config/install/search_api.server.solr.yml | 0 .../config/install/views.view.search.yml | 0 .../Plugin/DeployStep/RebuildSearchIndex.php | 0 .../the_force_search.deploy.php | 0 .../the_force_search.info.yml | 0 .../the_force_search/the_force_search.install | 0 .../includes/modules/-settings.sw_base.php | 0 .../modules/settings.reroute_email.php | 0 .../modules/settings.the_force_base.php | 0 .../themes/custom/lightsaber/.eslintrc.json | 0 .../web/themes/custom/lightsaber/.gitignore | 0 .../names/web/themes/custom/lightsaber/.npmrc | 0 .../themes/custom/lightsaber/.prettierignore | 0 .../themes/custom/lightsaber/.prettierrc.json | 0 .../custom/lightsaber/.stylelintrc.json | 0 .../web/themes/custom/lightsaber/README.md | 0 .../components/button/button.component.yml | 0 .../lightsaber/components/button/button.css | 0 .../lightsaber/components/button/button.twig | 0 .../themes/custom/lightsaber/fonts/.gitkeep | 0 .../themes/custom/lightsaber/images/.gitkeep | 0 .../themes/custom/lightsaber/js/lightsaber.js | 0 .../custom/lightsaber/lightsaber.info.yml | 0 .../lightsaber/lightsaber.libraries.yml | 0 .../themes/custom/lightsaber/lightsaber.theme | 0 .../web/themes/custom/lightsaber/logo.svg | 0 .../web/themes/custom/lightsaber/package.json | 0 .../themes/custom/lightsaber/patches/.gitkeep | 0 .../custom/lightsaber/postcss.config.js | 0 .../custom/lightsaber/scss/_components.scss | 0 .../themes/custom/lightsaber/scss/_fonts.scss | 0 .../custom/lightsaber/scss/_mixins.scss | 0 .../themes/custom/lightsaber/scss/_rem.scss | 0 .../custom/lightsaber/scss/_variables.scss | 0 .../lightsaber/scss/components/_header.scss | 0 .../themes/custom/lightsaber/scss/styles.scss | 0 .../layout/region--footer-bottom.html.twig | 0 .../tests/src/Functional/ExampleTest.php | 0 .../LightsaberFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 ...LightsaberFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/LightsaberKernelTestBase.php | 0 .../lightsaber/tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/LightsaberUnitTestBase.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../names/web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../non_interactive/.ignorecontent | 0 .../non_interactive_config_file/.ahoy.yml | 0 .../non_interactive_config_file/.env | 0 .../non_interactive_config_file/README.md | 0 .../non_interactive_config_file/composer.json | 0 .../docker-compose.yml | 0 .../non_interactive_config_file/package.json | 0 .../tests/behat/features/-redis.feature | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.redis.php | 0 .../.docker/-clamav.dockerfile | 0 .../.docker/config/clamav/-clamav.conf | 0 .../non_interactive_config_string/.env | 0 .../non_interactive_config_string/README.md | 0 .../composer.json | 0 .../docker-compose.yml | 0 .../package.json | 0 .../tests/behat/features/-clamav.feature | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.clamav.php | 0 .../notification_channels_all/.env | 0 .../.ignorecontent | 0 .../notification_channels_github_only/.env | 0 .../notification_channels_jira_only/.env | 0 .../notification_channels_newrelic_only/.env | 0 .../notification_channels_none/.env | 0 .../notification_channels_slack_only/.env | 0 .../notification_channels_webhook_only/.env | 0 .../docs/-README.md | 0 .../docs/-ci.md | 0 .../docs/-deployment.md | 0 .../docs/-faqs.md | 0 .../docs/-releasing.md | 0 .../docs/-testing.md | 0 .../.ignorecontent | 0 .../handler_process/profile_minimal/.env | 0 .../handler_process/profile_the_empire/.env | 0 .../custom/the_empire/the_empire.info.yml | 0 .../provision_database/.ignorecontent | 0 .../provision_database_lagoon/.env | 0 .../.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.github/workflows/close-pull-request.yml | 0 .../provision_database_lagoon/.ignorecontent | 0 .../provision_database_lagoon/.lagoon.yml | 0 .../provision_database_lagoon/README.md | 0 .../provision_database_lagoon/composer.json | 0 .../docker-compose.yml | 0 .../docs/deployment.md | 0 .../drush/sites/lagoon.site.yml | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../provision_profile/.ahoy.yml | 0 .../handler_process/provision_profile/.env | 0 .../provision_profile/.env.local.example | 0 .../.github/workflows/build-test-deploy.yml | 0 .../provision_profile/AGENTS.md | 0 .../provision_profile/README.md | 0 .../provision_profile/scripts/-sanitize.sql | 0 .../provision_profile_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../provision_profile_circleci/.dockerignore | 0 .../provision_profile_circleci/.env | 0 .../.env.local.example | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../provision_profile_circleci/AGENTS.md | 0 .../provision_profile_circleci/README.md | 0 .../provision_profile_circleci/docs/ci.md | 0 .../scripts/-sanitize.sql | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../.docker/-clamav.dockerfile | 0 .../.docker/config/clamav/-clamav.conf | 0 .../handler_process/services_no_clamav/.env | 0 .../services_no_clamav/composer.json | 0 .../services_no_clamav/docker-compose.yml | 0 .../tests/behat/features/-clamav.feature | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.clamav.php | 0 .../services_no_redis/.ahoy.yml | 0 .../handler_process/services_no_redis/.env | 0 .../services_no_redis/composer.json | 0 .../services_no_redis/docker-compose.yml | 0 .../tests/behat/features/-redis.feature | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../includes/modules/-settings.redis.php | 0 .../services_no_solr/.ahoy.yml | 0 .../services_no_solr/.docker/-solr.dockerfile | 0 .../config/solr/config-set/-accents_ar.txt | 0 .../config/solr/config-set/-accents_bg.txt | 0 .../config/solr/config-set/-accents_ca.txt | 0 .../config/solr/config-set/-accents_cs.txt | 0 .../config/solr/config-set/-accents_cy.txt | 0 .../config/solr/config-set/-accents_da.txt | 0 .../config/solr/config-set/-accents_de.txt | 0 .../config/solr/config-set/-accents_el.txt | 0 .../config/solr/config-set/-accents_en.txt | 0 .../config/solr/config-set/-accents_es.txt | 0 .../config/solr/config-set/-accents_et.txt | 0 .../config/solr/config-set/-accents_fa.txt | 0 .../config/solr/config-set/-accents_fi.txt | 0 .../config/solr/config-set/-accents_fr.txt | 0 .../config/solr/config-set/-accents_ga.txt | 0 .../config/solr/config-set/-accents_hi.txt | 0 .../config/solr/config-set/-accents_hr.txt | 0 .../config/solr/config-set/-accents_hu.txt | 0 .../config/solr/config-set/-accents_id.txt | 0 .../config/solr/config-set/-accents_it.txt | 0 .../config/solr/config-set/-accents_lv.txt | 0 .../config/solr/config-set/-accents_nb.txt | 0 .../config/solr/config-set/-accents_nl.txt | 0 .../config/solr/config-set/-accents_nn.txt | 0 .../config/solr/config-set/-accents_pl.txt | 0 .../config/solr/config-set/-accents_pt_br.txt | 0 .../config/solr/config-set/-accents_pt_pt.txt | 0 .../config/solr/config-set/-accents_ro.txt | 0 .../config/solr/config-set/-accents_ru.txt | 0 .../config/solr/config-set/-accents_sk.txt | 0 .../config/solr/config-set/-accents_sr.txt | 0 .../config/solr/config-set/-accents_sv.txt | 0 .../config/solr/config-set/-accents_th.txt | 0 .../config/solr/config-set/-accents_tr.txt | 0 .../config/solr/config-set/-accents_uk.txt | 0 .../config/solr/config-set/-accents_und.txt | 0 .../config/solr/config-set/-elevate.xml | 0 .../config/solr/config-set/-nouns_ar.txt | 0 .../config/solr/config-set/-nouns_bg.txt | 0 .../config/solr/config-set/-nouns_ca.txt | 0 .../config/solr/config-set/-nouns_cy.txt | 0 .../config/solr/config-set/-nouns_da.txt | 0 .../config/solr/config-set/-nouns_de.txt | 0 .../config/solr/config-set/-nouns_el.txt | 0 .../config/solr/config-set/-nouns_es.txt | 0 .../config/solr/config-set/-nouns_et.txt | 0 .../config/solr/config-set/-nouns_fa.txt | 0 .../config/solr/config-set/-nouns_fi.txt | 0 .../config/solr/config-set/-nouns_fr.txt | 0 .../config/solr/config-set/-nouns_hi.txt | 0 .../config/solr/config-set/-nouns_it.txt | 0 .../config/solr/config-set/-nouns_nb.txt | 0 .../config/solr/config-set/-nouns_nl.txt | 0 .../config/solr/config-set/-nouns_nn.txt | 0 .../config/solr/config-set/-nouns_pl.txt | 0 .../config/solr/config-set/-nouns_pt_br.txt | 0 .../config/solr/config-set/-nouns_pt_pt.txt | 0 .../config/solr/config-set/-nouns_ro.txt | 0 .../config/solr/config-set/-nouns_ru.txt | 0 .../config/solr/config-set/-nouns_sv.txt | 0 .../config/solr/config-set/-nouns_th.txt | 0 .../config/solr/config-set/-nouns_tr.txt | 0 .../config/solr/config-set/-nouns_uk.txt | 0 .../config/solr/config-set/-protwords_ar.txt | 0 .../config/solr/config-set/-protwords_bg.txt | 0 .../config/solr/config-set/-protwords_ca.txt | 0 .../config/solr/config-set/-protwords_cs.txt | 0 .../config/solr/config-set/-protwords_cy.txt | 0 .../config/solr/config-set/-protwords_da.txt | 0 .../config/solr/config-set/-protwords_de.txt | 0 .../config/solr/config-set/-protwords_el.txt | 0 .../config/solr/config-set/-protwords_en.txt | 0 .../config/solr/config-set/-protwords_es.txt | 0 .../config/solr/config-set/-protwords_et.txt | 0 .../config/solr/config-set/-protwords_fa.txt | 0 .../config/solr/config-set/-protwords_fi.txt | 0 .../config/solr/config-set/-protwords_fr.txt | 0 .../config/solr/config-set/-protwords_ga.txt | 0 .../config/solr/config-set/-protwords_hi.txt | 0 .../config/solr/config-set/-protwords_hr.txt | 0 .../config/solr/config-set/-protwords_hu.txt | 0 .../config/solr/config-set/-protwords_id.txt | 0 .../config/solr/config-set/-protwords_it.txt | 0 .../config/solr/config-set/-protwords_lv.txt | 0 .../config/solr/config-set/-protwords_nb.txt | 0 .../config/solr/config-set/-protwords_nl.txt | 0 .../config/solr/config-set/-protwords_nn.txt | 0 .../config/solr/config-set/-protwords_pl.txt | 0 .../solr/config-set/-protwords_pt_br.txt | 0 .../solr/config-set/-protwords_pt_pt.txt | 0 .../config/solr/config-set/-protwords_ro.txt | 0 .../config/solr/config-set/-protwords_ru.txt | 0 .../config/solr/config-set/-protwords_sk.txt | 0 .../config/solr/config-set/-protwords_sr.txt | 0 .../config/solr/config-set/-protwords_sv.txt | 0 .../config/solr/config-set/-protwords_th.txt | 0 .../config/solr/config-set/-protwords_tr.txt | 0 .../config/solr/config-set/-protwords_uk.txt | 0 .../config/solr/config-set/-protwords_und.txt | 0 .../config/solr/config-set/-schema.xml | 0 .../solr/config-set/-schema_extra_fields.xml | 0 .../solr/config-set/-schema_extra_types.xml | 0 .../config/solr/config-set/-solrconfig.xml | 0 .../solr/config-set/-solrconfig_extra.xml | 0 .../solr/config-set/-solrconfig_index.xml | 0 .../solr/config-set/-solrconfig_query.xml | 0 .../-solrconfig_requestdispatcher.xml | 0 .../solr/config-set/-solrcore.properties | 0 .../config/solr/config-set/-stoptags_ja.txt | 0 .../config/solr/config-set/-stopwords_ar.txt | 0 .../config/solr/config-set/-stopwords_bg.txt | 0 .../config/solr/config-set/-stopwords_ca.txt | 0 .../config/solr/config-set/-stopwords_cs.txt | 0 .../config/solr/config-set/-stopwords_cy.txt | 0 .../config/solr/config-set/-stopwords_da.txt | 0 .../config/solr/config-set/-stopwords_de.txt | 0 .../config/solr/config-set/-stopwords_el.txt | 0 .../config/solr/config-set/-stopwords_en.txt | 0 .../config/solr/config-set/-stopwords_es.txt | 0 .../config/solr/config-set/-stopwords_et.txt | 0 .../config/solr/config-set/-stopwords_fa.txt | 0 .../config/solr/config-set/-stopwords_fi.txt | 0 .../config/solr/config-set/-stopwords_fr.txt | 0 .../config/solr/config-set/-stopwords_ga.txt | 0 .../config/solr/config-set/-stopwords_hi.txt | 0 .../config/solr/config-set/-stopwords_hr.txt | 0 .../config/solr/config-set/-stopwords_hu.txt | 0 .../config/solr/config-set/-stopwords_id.txt | 0 .../config/solr/config-set/-stopwords_it.txt | 0 .../config/solr/config-set/-stopwords_ja.txt | 0 .../config/solr/config-set/-stopwords_ko.txt | 0 .../config/solr/config-set/-stopwords_lv.txt | 0 .../config/solr/config-set/-stopwords_nb.txt | 0 .../config/solr/config-set/-stopwords_nl.txt | 0 .../config/solr/config-set/-stopwords_nn.txt | 0 .../config/solr/config-set/-stopwords_pl.txt | 0 .../solr/config-set/-stopwords_pt_br.txt | 0 .../solr/config-set/-stopwords_pt_pt.txt | 0 .../config/solr/config-set/-stopwords_ro.txt | 0 .../config/solr/config-set/-stopwords_ru.txt | 0 .../config/solr/config-set/-stopwords_sk.txt | 0 .../config/solr/config-set/-stopwords_sr.txt | 0 .../config/solr/config-set/-stopwords_sv.txt | 0 .../config/solr/config-set/-stopwords_th.txt | 0 .../config/solr/config-set/-stopwords_tr.txt | 0 .../config/solr/config-set/-stopwords_uk.txt | 0 .../config/solr/config-set/-stopwords_und.txt | 0 .../config/solr/config-set/-synonyms_ar.txt | 0 .../config/solr/config-set/-synonyms_bg.txt | 0 .../config/solr/config-set/-synonyms_ca.txt | 0 .../config/solr/config-set/-synonyms_cs.txt | 0 .../config/solr/config-set/-synonyms_cy.txt | 0 .../config/solr/config-set/-synonyms_da.txt | 0 .../config/solr/config-set/-synonyms_de.txt | 0 .../config/solr/config-set/-synonyms_el.txt | 0 .../config/solr/config-set/-synonyms_en.txt | 0 .../config/solr/config-set/-synonyms_es.txt | 0 .../config/solr/config-set/-synonyms_et.txt | 0 .../config/solr/config-set/-synonyms_fa.txt | 0 .../config/solr/config-set/-synonyms_fi.txt | 0 .../config/solr/config-set/-synonyms_fr.txt | 0 .../config/solr/config-set/-synonyms_ga.txt | 0 .../config/solr/config-set/-synonyms_hi.txt | 0 .../config/solr/config-set/-synonyms_hr.txt | 0 .../config/solr/config-set/-synonyms_hu.txt | 0 .../config/solr/config-set/-synonyms_id.txt | 0 .../config/solr/config-set/-synonyms_it.txt | 0 .../config/solr/config-set/-synonyms_lv.txt | 0 .../config/solr/config-set/-synonyms_nb.txt | 0 .../config/solr/config-set/-synonyms_nl.txt | 0 .../config/solr/config-set/-synonyms_nn.txt | 0 .../config/solr/config-set/-synonyms_pl.txt | 0 .../solr/config-set/-synonyms_pt_br.txt | 0 .../solr/config-set/-synonyms_pt_pt.txt | 0 .../config/solr/config-set/-synonyms_ro.txt | 0 .../config/solr/config-set/-synonyms_ru.txt | 0 .../config/solr/config-set/-synonyms_sk.txt | 0 .../config/solr/config-set/-synonyms_sr.txt | 0 .../config/solr/config-set/-synonyms_sv.txt | 0 .../config/solr/config-set/-synonyms_th.txt | 0 .../config/solr/config-set/-synonyms_tr.txt | 0 .../config/solr/config-set/-synonyms_uk.txt | 0 .../config/solr/config-set/-synonyms_und.txt | 0 .../handler_process/services_no_solr/.env | 0 .../services_no_solr/composer.json | 0 .../services_no_solr/docker-compose.yml | 0 .../tests/behat/features/-search.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../includes/modules/-settings.search_api.php | 0 .../handler_process/services_none/.ahoy.yml | 0 .../services_none/.docker/-clamav.dockerfile | 0 .../services_none/.docker/-solr.dockerfile | 0 .../.docker/config/clamav/-clamav.conf | 0 .../config/solr/config-set/-accents_ar.txt | 0 .../config/solr/config-set/-accents_bg.txt | 0 .../config/solr/config-set/-accents_ca.txt | 0 .../config/solr/config-set/-accents_cs.txt | 0 .../config/solr/config-set/-accents_cy.txt | 0 .../config/solr/config-set/-accents_da.txt | 0 .../config/solr/config-set/-accents_de.txt | 0 .../config/solr/config-set/-accents_el.txt | 0 .../config/solr/config-set/-accents_en.txt | 0 .../config/solr/config-set/-accents_es.txt | 0 .../config/solr/config-set/-accents_et.txt | 0 .../config/solr/config-set/-accents_fa.txt | 0 .../config/solr/config-set/-accents_fi.txt | 0 .../config/solr/config-set/-accents_fr.txt | 0 .../config/solr/config-set/-accents_ga.txt | 0 .../config/solr/config-set/-accents_hi.txt | 0 .../config/solr/config-set/-accents_hr.txt | 0 .../config/solr/config-set/-accents_hu.txt | 0 .../config/solr/config-set/-accents_id.txt | 0 .../config/solr/config-set/-accents_it.txt | 0 .../config/solr/config-set/-accents_lv.txt | 0 .../config/solr/config-set/-accents_nb.txt | 0 .../config/solr/config-set/-accents_nl.txt | 0 .../config/solr/config-set/-accents_nn.txt | 0 .../config/solr/config-set/-accents_pl.txt | 0 .../config/solr/config-set/-accents_pt_br.txt | 0 .../config/solr/config-set/-accents_pt_pt.txt | 0 .../config/solr/config-set/-accents_ro.txt | 0 .../config/solr/config-set/-accents_ru.txt | 0 .../config/solr/config-set/-accents_sk.txt | 0 .../config/solr/config-set/-accents_sr.txt | 0 .../config/solr/config-set/-accents_sv.txt | 0 .../config/solr/config-set/-accents_th.txt | 0 .../config/solr/config-set/-accents_tr.txt | 0 .../config/solr/config-set/-accents_uk.txt | 0 .../config/solr/config-set/-accents_und.txt | 0 .../config/solr/config-set/-elevate.xml | 0 .../config/solr/config-set/-nouns_ar.txt | 0 .../config/solr/config-set/-nouns_bg.txt | 0 .../config/solr/config-set/-nouns_ca.txt | 0 .../config/solr/config-set/-nouns_cy.txt | 0 .../config/solr/config-set/-nouns_da.txt | 0 .../config/solr/config-set/-nouns_de.txt | 0 .../config/solr/config-set/-nouns_el.txt | 0 .../config/solr/config-set/-nouns_es.txt | 0 .../config/solr/config-set/-nouns_et.txt | 0 .../config/solr/config-set/-nouns_fa.txt | 0 .../config/solr/config-set/-nouns_fi.txt | 0 .../config/solr/config-set/-nouns_fr.txt | 0 .../config/solr/config-set/-nouns_hi.txt | 0 .../config/solr/config-set/-nouns_it.txt | 0 .../config/solr/config-set/-nouns_nb.txt | 0 .../config/solr/config-set/-nouns_nl.txt | 0 .../config/solr/config-set/-nouns_nn.txt | 0 .../config/solr/config-set/-nouns_pl.txt | 0 .../config/solr/config-set/-nouns_pt_br.txt | 0 .../config/solr/config-set/-nouns_pt_pt.txt | 0 .../config/solr/config-set/-nouns_ro.txt | 0 .../config/solr/config-set/-nouns_ru.txt | 0 .../config/solr/config-set/-nouns_sv.txt | 0 .../config/solr/config-set/-nouns_th.txt | 0 .../config/solr/config-set/-nouns_tr.txt | 0 .../config/solr/config-set/-nouns_uk.txt | 0 .../config/solr/config-set/-protwords_ar.txt | 0 .../config/solr/config-set/-protwords_bg.txt | 0 .../config/solr/config-set/-protwords_ca.txt | 0 .../config/solr/config-set/-protwords_cs.txt | 0 .../config/solr/config-set/-protwords_cy.txt | 0 .../config/solr/config-set/-protwords_da.txt | 0 .../config/solr/config-set/-protwords_de.txt | 0 .../config/solr/config-set/-protwords_el.txt | 0 .../config/solr/config-set/-protwords_en.txt | 0 .../config/solr/config-set/-protwords_es.txt | 0 .../config/solr/config-set/-protwords_et.txt | 0 .../config/solr/config-set/-protwords_fa.txt | 0 .../config/solr/config-set/-protwords_fi.txt | 0 .../config/solr/config-set/-protwords_fr.txt | 0 .../config/solr/config-set/-protwords_ga.txt | 0 .../config/solr/config-set/-protwords_hi.txt | 0 .../config/solr/config-set/-protwords_hr.txt | 0 .../config/solr/config-set/-protwords_hu.txt | 0 .../config/solr/config-set/-protwords_id.txt | 0 .../config/solr/config-set/-protwords_it.txt | 0 .../config/solr/config-set/-protwords_lv.txt | 0 .../config/solr/config-set/-protwords_nb.txt | 0 .../config/solr/config-set/-protwords_nl.txt | 0 .../config/solr/config-set/-protwords_nn.txt | 0 .../config/solr/config-set/-protwords_pl.txt | 0 .../solr/config-set/-protwords_pt_br.txt | 0 .../solr/config-set/-protwords_pt_pt.txt | 0 .../config/solr/config-set/-protwords_ro.txt | 0 .../config/solr/config-set/-protwords_ru.txt | 0 .../config/solr/config-set/-protwords_sk.txt | 0 .../config/solr/config-set/-protwords_sr.txt | 0 .../config/solr/config-set/-protwords_sv.txt | 0 .../config/solr/config-set/-protwords_th.txt | 0 .../config/solr/config-set/-protwords_tr.txt | 0 .../config/solr/config-set/-protwords_uk.txt | 0 .../config/solr/config-set/-protwords_und.txt | 0 .../config/solr/config-set/-schema.xml | 0 .../solr/config-set/-schema_extra_fields.xml | 0 .../solr/config-set/-schema_extra_types.xml | 0 .../config/solr/config-set/-solrconfig.xml | 0 .../solr/config-set/-solrconfig_extra.xml | 0 .../solr/config-set/-solrconfig_index.xml | 0 .../solr/config-set/-solrconfig_query.xml | 0 .../-solrconfig_requestdispatcher.xml | 0 .../solr/config-set/-solrcore.properties | 0 .../config/solr/config-set/-stoptags_ja.txt | 0 .../config/solr/config-set/-stopwords_ar.txt | 0 .../config/solr/config-set/-stopwords_bg.txt | 0 .../config/solr/config-set/-stopwords_ca.txt | 0 .../config/solr/config-set/-stopwords_cs.txt | 0 .../config/solr/config-set/-stopwords_cy.txt | 0 .../config/solr/config-set/-stopwords_da.txt | 0 .../config/solr/config-set/-stopwords_de.txt | 0 .../config/solr/config-set/-stopwords_el.txt | 0 .../config/solr/config-set/-stopwords_en.txt | 0 .../config/solr/config-set/-stopwords_es.txt | 0 .../config/solr/config-set/-stopwords_et.txt | 0 .../config/solr/config-set/-stopwords_fa.txt | 0 .../config/solr/config-set/-stopwords_fi.txt | 0 .../config/solr/config-set/-stopwords_fr.txt | 0 .../config/solr/config-set/-stopwords_ga.txt | 0 .../config/solr/config-set/-stopwords_hi.txt | 0 .../config/solr/config-set/-stopwords_hr.txt | 0 .../config/solr/config-set/-stopwords_hu.txt | 0 .../config/solr/config-set/-stopwords_id.txt | 0 .../config/solr/config-set/-stopwords_it.txt | 0 .../config/solr/config-set/-stopwords_ja.txt | 0 .../config/solr/config-set/-stopwords_ko.txt | 0 .../config/solr/config-set/-stopwords_lv.txt | 0 .../config/solr/config-set/-stopwords_nb.txt | 0 .../config/solr/config-set/-stopwords_nl.txt | 0 .../config/solr/config-set/-stopwords_nn.txt | 0 .../config/solr/config-set/-stopwords_pl.txt | 0 .../solr/config-set/-stopwords_pt_br.txt | 0 .../solr/config-set/-stopwords_pt_pt.txt | 0 .../config/solr/config-set/-stopwords_ro.txt | 0 .../config/solr/config-set/-stopwords_ru.txt | 0 .../config/solr/config-set/-stopwords_sk.txt | 0 .../config/solr/config-set/-stopwords_sr.txt | 0 .../config/solr/config-set/-stopwords_sv.txt | 0 .../config/solr/config-set/-stopwords_th.txt | 0 .../config/solr/config-set/-stopwords_tr.txt | 0 .../config/solr/config-set/-stopwords_uk.txt | 0 .../config/solr/config-set/-stopwords_und.txt | 0 .../config/solr/config-set/-synonyms_ar.txt | 0 .../config/solr/config-set/-synonyms_bg.txt | 0 .../config/solr/config-set/-synonyms_ca.txt | 0 .../config/solr/config-set/-synonyms_cs.txt | 0 .../config/solr/config-set/-synonyms_cy.txt | 0 .../config/solr/config-set/-synonyms_da.txt | 0 .../config/solr/config-set/-synonyms_de.txt | 0 .../config/solr/config-set/-synonyms_el.txt | 0 .../config/solr/config-set/-synonyms_en.txt | 0 .../config/solr/config-set/-synonyms_es.txt | 0 .../config/solr/config-set/-synonyms_et.txt | 0 .../config/solr/config-set/-synonyms_fa.txt | 0 .../config/solr/config-set/-synonyms_fi.txt | 0 .../config/solr/config-set/-synonyms_fr.txt | 0 .../config/solr/config-set/-synonyms_ga.txt | 0 .../config/solr/config-set/-synonyms_hi.txt | 0 .../config/solr/config-set/-synonyms_hr.txt | 0 .../config/solr/config-set/-synonyms_hu.txt | 0 .../config/solr/config-set/-synonyms_id.txt | 0 .../config/solr/config-set/-synonyms_it.txt | 0 .../config/solr/config-set/-synonyms_lv.txt | 0 .../config/solr/config-set/-synonyms_nb.txt | 0 .../config/solr/config-set/-synonyms_nl.txt | 0 .../config/solr/config-set/-synonyms_nn.txt | 0 .../config/solr/config-set/-synonyms_pl.txt | 0 .../solr/config-set/-synonyms_pt_br.txt | 0 .../solr/config-set/-synonyms_pt_pt.txt | 0 .../config/solr/config-set/-synonyms_ro.txt | 0 .../config/solr/config-set/-synonyms_ru.txt | 0 .../config/solr/config-set/-synonyms_sk.txt | 0 .../config/solr/config-set/-synonyms_sr.txt | 0 .../config/solr/config-set/-synonyms_sv.txt | 0 .../config/solr/config-set/-synonyms_th.txt | 0 .../config/solr/config-set/-synonyms_tr.txt | 0 .../config/solr/config-set/-synonyms_uk.txt | 0 .../config/solr/config-set/-synonyms_und.txt | 0 .../handler_process/services_none/.env | 0 .../services_none/composer.json | 0 .../services_none/docker-compose.yml | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-search.feature | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/SwitchableSettingsTest.php | 0 .../EnableDevelopmentModulesDeployStep.php | 0 .../custom/sw_search/-sw_search.deploy.php | 0 .../custom/sw_search/-sw_search.info.yml | 0 .../custom/sw_search/-sw_search.install | 0 .../install/-search_api.index.content.yml | 0 .../install/-search_api.server.solr.yml | 0 .../config/install/-views.view.search.yml | 0 .../Plugin/DeployStep/-RebuildSearchIndex.php | 0 .../includes/modules/-settings.clamav.php | 0 .../includes/modules/-settings.redis.php | 0 .../includes/modules/-settings.search_api.php | 0 .../starter_demo_db/.ignorecontent | 0 .../starter_drupal_cms_profile/.env | 0 .../starter_drupal_cms_profile/composer.json | 0 .../starter_drupal_profile/.env | 0 .../handler_process/theme_claro/.ahoy.yml | 0 .../theme_claro/.docker/cli.dockerfile | 0 .../Fixtures/handler_process/theme_claro/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../theme_claro/.twig-cs-fixer.php | 0 .../handler_process/theme_claro/README.md | 0 .../handler_process/theme_claro/phpcs.xml | 0 .../handler_process/theme_claro/phpstan.neon | 0 .../handler_process/theme_claro/phpunit.xml | 0 .../handler_process/theme_claro/rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../theme_custom/.docker/cli.dockerfile | 0 .../handler_process/theme_custom/.env | 0 .../handler_process/theme_custom/README.md | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/light_saber/.eslintrc.json | 0 .../web/themes/custom/light_saber/.gitignore | 0 .../web/themes/custom/light_saber/.npmrc | 0 .../themes/custom/light_saber/.prettierignore | 0 .../custom/light_saber/.prettierrc.json | 0 .../custom/light_saber/.stylelintrc.json | 0 .../web/themes/custom/light_saber/README.md | 0 .../components/button/button.component.yml | 0 .../light_saber/components/button/button.css | 0 .../light_saber/components/button/button.twig | 0 .../themes/custom/light_saber/fonts/.gitkeep | 0 .../themes/custom/light_saber/images/.gitkeep | 0 .../custom/light_saber/js/light_saber.js | 0 .../custom/light_saber/light_saber.info.yml | 0 .../light_saber/light_saber.libraries.yml | 0 .../custom/light_saber/light_saber.theme | 0 .../web/themes/custom/light_saber/logo.svg | 0 .../themes/custom/light_saber/package.json | 0 .../custom/light_saber/patches/.gitkeep | 0 .../custom/light_saber/postcss.config.js | 0 .../custom/light_saber/scss/_components.scss | 0 .../custom/light_saber/scss/_fonts.scss | 0 .../custom/light_saber/scss/_mixins.scss | 0 .../themes/custom/light_saber/scss/_rem.scss | 0 .../custom/light_saber/scss/_variables.scss | 0 .../light_saber/scss/components/_header.scss | 0 .../custom/light_saber/scss/styles.scss | 0 .../layout/region--footer-bottom.html.twig | 0 .../tests/src/Functional/ExampleTest.php | 0 .../LightSaberFunctionalTestBase.php | 0 .../src/FunctionalJavascript/ExampleTest.php | 0 ...LightSaberFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/ExampleTest.php | 0 .../src/Kernel/LightSaberKernelTestBase.php | 0 .../tests/src/Unit/ExampleTest.php | 0 .../tests/src/Unit/LightSaberUnitTestBase.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../theme_custom_non_vortex/.env | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../web/themes/custom/star_wars/package.json | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../custom/star_wars/star_wars.info.yml | 0 .../web/themes/custom/star_wars/styles.css | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../handler_process/theme_olivero/.ahoy.yml | 0 .../theme_olivero/.docker/cli.dockerfile | 0 .../handler_process/theme_olivero/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../theme_olivero/.twig-cs-fixer.php | 0 .../handler_process/theme_olivero/README.md | 0 .../handler_process/theme_olivero/phpcs.xml | 0 .../theme_olivero/phpstan.neon | 0 .../handler_process/theme_olivero/phpunit.xml | 0 .../handler_process/theme_olivero/rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../handler_process/theme_stark/.ahoy.yml | 0 .../theme_stark/.docker/cli.dockerfile | 0 .../Fixtures/handler_process/theme_stark/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../theme_stark/.twig-cs-fixer.php | 0 .../handler_process/theme_stark/README.md | 0 .../handler_process/theme_stark/phpcs.xml | 0 .../handler_process/theme_stark/phpstan.neon | 0 .../handler_process/theme_stark/phpunit.xml | 0 .../handler_process/theme_stark/rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../timezone_circleci/.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../timezone_circleci/.dockerignore | 0 .../handler_process/timezone_circleci/.env | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../timezone_circleci/README.md | 0 .../timezone_circleci/docs/ci.md | 0 .../timezone_circleci/renovate.json | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../handler_process/timezone_gha/.env | 0 .../timezone_gha/renovate.json | 0 .../tools_groups_no_be_lint/-phpcs.xml | 0 .../tools_groups_no_be_lint/-phpstan.neon | 0 .../tools_groups_no_be_lint/-rector.php | 0 .../tools_groups_no_be_lint/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_groups_no_be_lint/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../web/sites/default/default.settings.php | 0 .../includes/modules/settings.fast404.php | 0 .../includes/modules/settings.redis.php | 0 .../web/sites/default/settings.php | 0 .../tests/src/Functional/ExampleTest.php | 0 .../-phpcs.xml | 0 .../-phpstan.neon | 0 .../-rector.php | 0 .../.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../README.md | 0 .../composer.json | 0 .../docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../web/sites/default/default.settings.php | 0 .../includes/modules/settings.fast404.php | 0 .../includes/modules/settings.redis.php | 0 .../web/sites/default/settings.php | 0 .../tests/src/Functional/ExampleTest.php | 0 .../tools_groups_no_be_tests/-behat.yml | 0 .../-gherkinlint.json | 0 .../tools_groups_no_be_tests/-phpunit.xml | 0 .../tools_groups_no_be_tests/.ahoy.yml | 0 .../tools_groups_no_be_tests/.dockerignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_groups_no_be_tests/.gitignore | 0 .../tools_groups_no_be_tests/AGENTS.md | 0 .../tools_groups_no_be_tests/composer.json | 0 .../tools_groups_no_be_tests/docs/testing.md | 0 .../tools_groups_no_be_tests/phpcs.xml | 0 .../tools_groups_no_be_tests/phpstan.neon | 0 .../tools_groups_no_be_tests/rector.php | 0 .../tests/behat/bootstrap/-FeatureContext.php | 0 .../behat/features/-accessibility.feature | 0 .../tests/behat/features/-behat.feature | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-homepage.feature | 0 .../tests/behat/features/-login.feature | 0 .../tests/behat/features/-pages.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-search.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../tests/phpunit/-bootstrap.php | 0 .../phpunit/Drupal/-DatabaseSettingsTest.php | 0 .../Drupal/-EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/-SettingsTestCase.php | 0 .../Drupal/-SwitchableSettingsTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../-behat.yml | 0 .../-gherkinlint.json | 0 .../-phpunit.xml | 0 .../.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../.gitignore | 0 .../AGENTS.md | 0 .../README.md | 0 .../composer.json | 0 .../docs/ci.md | 0 .../docs/testing.md | 0 .../phpcs.xml | 0 .../phpstan.neon | 0 .../rector.php | 0 .../tests/behat/bootstrap/-FeatureContext.php | 0 .../behat/features/-accessibility.feature | 0 .../tests/behat/features/-behat.feature | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-homepage.feature | 0 .../tests/behat/features/-login.feature | 0 .../tests/behat/features/-pages.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-search.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../tests/phpunit/-bootstrap.php | 0 .../phpunit/Drupal/-DatabaseSettingsTest.php | 0 .../Drupal/-EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/-SettingsTestCase.php | 0 .../Drupal/-SwitchableSettingsTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../tools_groups_no_fe_lint/-.eslintignore | 0 .../tools_groups_no_fe_lint/-.eslintrc.json | 0 .../tools_groups_no_fe_lint/-.prettierignore | 0 .../tools_groups_no_fe_lint/-.prettierrc.json | 0 .../tools_groups_no_fe_lint/-.stylelintrc.js | 0 .../tools_groups_no_fe_lint/-jest.config.js | 0 .../tools_groups_no_fe_lint/-package.json | 0 .../tools_groups_no_fe_lint/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_groups_no_fe_lint/AGENTS.md | 0 .../-.eslintignore | 0 .../-.eslintrc.json | 0 .../-.prettierignore | 0 .../-.prettierrc.json | 0 .../-.stylelintrc.js | 0 .../-jest.config.js | 0 .../-package.json | 0 .../.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../AGENTS.md | 0 .../README.md | 0 .../docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../-.eslintignore | 0 .../-.eslintrc.json | 0 .../-.prettierignore | 0 .../-.prettierrc.json | 0 .../-.stylelintrc.js | 0 .../-jest.config.js | 0 .../-package.json | 0 .../.ahoy.yml | 0 .../.docker/cli.dockerfile | 0 .../tools_groups_no_fe_lint_no_theme/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.twig-cs-fixer.php | 0 .../AGENTS.md | 0 .../README.md | 0 .../phpcs.xml | 0 .../phpstan.neon | 0 .../phpunit.xml | 0 .../rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../-.eslintignore | 0 .../-.eslintrc.json | 0 .../-.prettierignore | 0 .../-.prettierrc.json | 0 .../-.stylelintrc.js | 0 .../-jest.config.js | 0 .../-package.json | 0 .../.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../.docker/cli.dockerfile | 0 .../.dockerignore | 0 .../.env | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../.twig-cs-fixer.php | 0 .../AGENTS.md | 0 .../README.md | 0 .../docs/ci.md | 0 .../phpcs.xml | 0 .../phpstan.neon | 0 .../phpunit.xml | 0 .../rector.php | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../handler_process/tools_no_behat/-behat.yml | 0 .../tools_no_behat/-gherkinlint.json | 0 .../handler_process/tools_no_behat/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/tools_no_behat/AGENTS.md | 0 .../tools_no_behat/composer.json | 0 .../tools_no_behat/docs/testing.md | 0 .../handler_process/tools_no_behat/phpcs.xml | 0 .../handler_process/tools_no_behat/rector.php | 0 .../tests/behat/bootstrap/-FeatureContext.php | 0 .../behat/features/-accessibility.feature | 0 .../tests/behat/features/-behat.feature | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-homepage.feature | 0 .../tests/behat/features/-login.feature | 0 .../tests/behat/features/-pages.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-search.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../tools_no_behat_circleci/-behat.yml | 0 .../tools_no_behat_circleci/-gherkinlint.json | 0 .../tools_no_behat_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_behat_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_behat_circleci/AGENTS.md | 0 .../tools_no_behat_circleci/README.md | 0 .../tools_no_behat_circleci/composer.json | 0 .../tools_no_behat_circleci/docs/ci.md | 0 .../tools_no_behat_circleci/docs/testing.md | 0 .../tools_no_behat_circleci/phpcs.xml | 0 .../tools_no_behat_circleci/rector.php | 0 .../tests/behat/bootstrap/-FeatureContext.php | 0 .../behat/features/-accessibility.feature | 0 .../tests/behat/features/-behat.feature | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-homepage.feature | 0 .../tests/behat/features/-login.feature | 0 .../tests/behat/features/-pages.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-search.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tools_no_eslint/-.eslintignore | 0 .../tools_no_eslint/-.eslintrc.json | 0 .../tools_no_eslint/-.prettierignore | 0 .../tools_no_eslint/-.prettierrc.json | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_no_eslint/package.json | 0 .../tools_no_eslint_circleci/-.eslintignore | 0 .../tools_no_eslint_circleci/-.eslintrc.json | 0 .../tools_no_eslint_circleci/-.prettierignore | 0 .../-.prettierrc.json | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_eslint_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_eslint_circleci/README.md | 0 .../tools_no_eslint_circleci/docs/ci.md | 0 .../tools_no_eslint_circleci/package.json | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tools_no_eslint_no_theme/-.eslintignore | 0 .../tools_no_eslint_no_theme/-.eslintrc.json | 0 .../tools_no_eslint_no_theme/-.prettierignore | 0 .../-.prettierrc.json | 0 .../tools_no_eslint_no_theme/.ahoy.yml | 0 .../.docker/cli.dockerfile | 0 .../tools_no_eslint_no_theme/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.twig-cs-fixer.php | 0 .../tools_no_eslint_no_theme/README.md | 0 .../tools_no_eslint_no_theme/package.json | 0 .../tools_no_eslint_no_theme/phpcs.xml | 0 .../tools_no_eslint_no_theme/phpstan.neon | 0 .../tools_no_eslint_no_theme/phpunit.xml | 0 .../tools_no_eslint_no_theme/rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../tools_no_jest/-jest.config.js | 0 .../handler_process/tools_no_jest/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/tools_no_jest/AGENTS.md | 0 .../tools_no_jest/package.json | 0 .../tools_no_jest_circleci/-jest.config.js | 0 .../tools_no_jest_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_jest_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_jest_circleci/AGENTS.md | 0 .../tools_no_jest_circleci/README.md | 0 .../tools_no_jest_circleci/docs/ci.md | 0 .../tools_no_jest_circleci/package.json | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../handler_process/tools_no_phpcs/-phpcs.xml | 0 .../handler_process/tools_no_phpcs/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_no_phpcs/composer.json | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../web/sites/default/default.settings.php | 0 .../includes/modules/settings.redis.php | 0 .../web/sites/default/settings.php | 0 .../tests/src/Functional/ExampleTest.php | 0 .../tools_no_phpcs_circleci/-phpcs.xml | 0 .../tools_no_phpcs_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_phpcs_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_phpcs_circleci/README.md | 0 .../tools_no_phpcs_circleci/composer.json | 0 .../tools_no_phpcs_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tests/phpunit/Drupal/SettingsTestCase.php | 0 .../web/sites/default/default.settings.php | 0 .../includes/modules/settings.redis.php | 0 .../web/sites/default/settings.php | 0 .../tests/src/Functional/ExampleTest.php | 0 .../tools_no_phpstan/-phpstan.neon | 0 .../tools_no_phpstan/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_no_phpstan/composer.json | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../includes/modules/settings.fast404.php | 0 .../tools_no_phpstan_circleci/-phpstan.neon | 0 .../tools_no_phpstan_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_phpstan_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_phpstan_circleci/README.md | 0 .../tools_no_phpstan_circleci/composer.json | 0 .../tools_no_phpstan_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../includes/modules/settings.fast404.php | 0 .../tools_no_phpunit/-phpunit.xml | 0 .../tools_no_phpunit/.ahoy.yml | 0 .../tools_no_phpunit/.dockerignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_no_phpunit/.gitignore | 0 .../tools_no_phpunit/AGENTS.md | 0 .../tools_no_phpunit/composer.json | 0 .../tools_no_phpunit/docs/testing.md | 0 .../tools_no_phpunit/phpstan.neon | 0 .../tools_no_phpunit/rector.php | 0 .../tests/phpunit/-bootstrap.php | 0 .../phpunit/Drupal/-DatabaseSettingsTest.php | 0 .../Drupal/-EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/-SettingsTestCase.php | 0 .../Drupal/-SwitchableSettingsTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../tools_no_phpunit_circleci/-phpunit.xml | 0 .../tools_no_phpunit_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_phpunit_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_phpunit_circleci/.gitignore | 0 .../tools_no_phpunit_circleci/AGENTS.md | 0 .../tools_no_phpunit_circleci/README.md | 0 .../tools_no_phpunit_circleci/composer.json | 0 .../tools_no_phpunit_circleci/docs/ci.md | 0 .../tools_no_phpunit_circleci/docs/testing.md | 0 .../tools_no_phpunit_circleci/phpstan.neon | 0 .../tools_no_phpunit_circleci/rector.php | 0 .../tests/phpunit/-bootstrap.php | 0 .../phpunit/Drupal/-DatabaseSettingsTest.php | 0 .../Drupal/-EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/-SettingsTestCase.php | 0 .../Drupal/-SwitchableSettingsTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../tools_no_rector/-rector.php | 0 .../handler_process/tools_no_rector/.ahoy.yml | 0 .../.github/workflows/build-test-deploy.yml | 0 .../tools_no_rector/composer.json | 0 .../tools_no_rector_circleci/-rector.php | 0 .../tools_no_rector_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_rector_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_rector_circleci/README.md | 0 .../tools_no_rector_circleci/composer.json | 0 .../tools_no_rector_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../tools_no_stylelint/-.stylelintrc.js | 0 .../tools_no_stylelint/package.json | 0 .../-.stylelintrc.js | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_stylelint_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_stylelint_circleci/README.md | 0 .../tools_no_stylelint_circleci/docs/ci.md | 0 .../tools_no_stylelint_circleci/package.json | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../-.stylelintrc.js | 0 .../tools_no_stylelint_no_theme/.ahoy.yml | 0 .../.docker/cli.dockerfile | 0 .../tools_no_stylelint_no_theme/.env | 0 .../.github/workflows/build-test-deploy.yml | 0 .../.twig-cs-fixer.php | 0 .../tools_no_stylelint_no_theme/README.md | 0 .../tools_no_stylelint_no_theme/package.json | 0 .../tools_no_stylelint_no_theme/phpcs.xml | 0 .../tools_no_stylelint_no_theme/phpstan.neon | 0 .../tools_no_stylelint_no_theme/phpunit.xml | 0 .../tools_no_stylelint_no_theme/rector.php | 0 .../modules/custom/sw_base/sw_base.deploy.php | 0 .../themes/custom/star_wars/-.eslintrc.json | 0 .../web/themes/custom/star_wars/-.gitignore | 0 .../web/themes/custom/star_wars/-.npmrc | 0 .../themes/custom/star_wars/-.prettierignore | 0 .../themes/custom/star_wars/-.prettierrc.json | 0 .../custom/star_wars/-.stylelintrc.json | 0 .../web/themes/custom/star_wars/-README.md | 0 .../web/themes/custom/star_wars/-logo.svg | 0 .../web/themes/custom/star_wars/-package.json | 0 .../custom/star_wars/-postcss.config.js | 0 .../custom/star_wars/-star_wars.info.yml | 0 .../custom/star_wars/-star_wars.libraries.yml | 0 .../themes/custom/star_wars/-star_wars.theme | 0 .../components/button/-button.component.yml | 0 .../star_wars/components/button/-button.css | 0 .../star_wars/components/button/-button.twig | 0 .../themes/custom/star_wars/fonts/-.gitkeep | 0 .../themes/custom/star_wars/images/-.gitkeep | 0 .../themes/custom/star_wars/js/-star_wars.js | 0 .../themes/custom/star_wars/patches/-.gitkeep | 0 .../custom/star_wars/scss/-_components.scss | 0 .../themes/custom/star_wars/scss/-_fonts.scss | 0 .../custom/star_wars/scss/-_mixins.scss | 0 .../themes/custom/star_wars/scss/-_rem.scss | 0 .../custom/star_wars/scss/-_variables.scss | 0 .../themes/custom/star_wars/scss/-styles.scss | 0 .../star_wars/scss/components/-_header.scss | 0 .../layout/-region--footer-bottom.html.twig | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../tools_no_twig/-.twig-cs-fixer.php | 0 .../handler_process/tools_no_twig/.ahoy.yml | 0 .../tools_no_twig/.dockerignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/tools_no_twig/.gitignore | 0 .../tools_no_twig/composer.json | 0 .../-.twig-cs-fixer.php | 0 .../tools_no_twig_circleci/.ahoy.yml | 0 .../.circleci/config.yml | 0 .../.circleci/post-coverage-comment.sh | 0 .../tools_no_twig_circleci/.dockerignore | 0 .../.github/workflows/-build-test-deploy.yml | 0 .../tools_no_twig_circleci/.gitignore | 0 .../tools_no_twig_circleci/README.md | 0 .../tools_no_twig_circleci/composer.json | 0 .../tools_no_twig_circleci/docs/ci.md | 0 .../tests/phpunit/CircleCiConfigTest.php | 0 .../Drupal/EnvironmentSettingsTest.php | 0 .../handler_process/tools_none/-.eslintignore | 0 .../tools_none/-.eslintrc.json | 0 .../tools_none/-.prettierignore | 0 .../tools_none/-.prettierrc.json | 0 .../tools_none/-.stylelintrc.js | 0 .../tools_none/-.twig-cs-fixer.php | 0 .../handler_process/tools_none/-behat.yml | 0 .../tools_none/-gherkinlint.json | 0 .../tools_none/-jest.config.js | 0 .../handler_process/tools_none/-package.json | 0 .../handler_process/tools_none/-phpcs.xml | 0 .../handler_process/tools_none/-phpstan.neon | 0 .../handler_process/tools_none/-phpunit.xml | 0 .../handler_process/tools_none/-rector.php | 0 .../handler_process/tools_none/.ahoy.yml | 0 .../handler_process/tools_none/.dockerignore | 0 .../.github/workflows/build-test-deploy.yml | 0 .../handler_process/tools_none/.gitignore | 0 .../handler_process/tools_none/AGENTS.md | 0 .../handler_process/tools_none/composer.json | 0 .../tools_none/docs/testing.md | 0 .../tests/behat/bootstrap/-FeatureContext.php | 0 .../behat/features/-accessibility.feature | 0 .../tests/behat/features/-behat.feature | 0 .../tests/behat/features/-clamav.feature | 0 .../tests/behat/features/-counter.feature | 0 .../tests/behat/features/-homepage.feature | 0 .../tests/behat/features/-login.feature | 0 .../tests/behat/features/-pages.feature | 0 .../tests/behat/features/-redis.feature | 0 .../tests/behat/features/-robotstxt.feature | 0 .../tests/behat/features/-search.feature | 0 .../tests/behat/features/-xmlsitemap.feature | 0 .../tools_none/tests/phpunit/-bootstrap.php | 0 .../phpunit/Drupal/-DatabaseSettingsTest.php | 0 .../Drupal/-EnvironmentSettingsTest.php | 0 .../phpunit/Drupal/-SettingsTestCase.php | 0 .../Drupal/-SwitchableSettingsTest.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../Functional/-SwBaseFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-SwBaseFunctionalJavascriptTestBase.php | 0 .../sw_base/tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-SwBaseKernelTestBase.php | 0 .../sw_base/tests/src/Traits/-ArrayTrait.php | 0 .../sw_base/tests/src/Traits/-AssertTrait.php | 0 .../src/Traits/-BrowserHtmlDebugTrait.php | 0 .../sw_base/tests/src/Traits/-MockTrait.php | 0 .../tests/src/Traits/-ReflectionTrait.php | 0 .../sw_base/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-SwBaseUnitTestBase.php | 0 .../sw_demo/src/Plugin/Block/CounterBlock.php | 0 .../web/modules/custom/sw_demo/sw_demo.module | 0 .../-CounterBlockTest.php | 0 .../tests/src/Kernel/-CounterBlockTest.php | 0 .../tests/src/Unit/-CounterBlockTest.php | 0 .../web/sites/default/default.settings.php | 0 .../includes/modules/settings.fast404.php | 0 .../includes/modules/settings.redis.php | 0 .../tools_none/web/sites/default/settings.php | 0 .../tests/src/Functional/-ExampleTest.php | 0 .../-StarWarsFunctionalTestBase.php | 0 .../src/FunctionalJavascript/-ExampleTest.php | 0 .../-StarWarsFunctionalJavascriptTestBase.php | 0 .../tests/src/Kernel/-ExampleTest.php | 0 .../src/Kernel/-StarWarsKernelTestBase.php | 0 .../star_wars/tests/src/Unit/-ExampleTest.php | 0 .../tests/src/Unit/-StarWarsUnitTestBase.php | 0 .../version_scheme_calver/.ignorecontent | 0 .../handler_process/version_scheme_other/.env | 0 .../version_scheme_other/docs/releasing.md | 0 .../version_scheme_semver/.env | 0 .../version_scheme_semver/docs/releasing.md | 0 .../.github/workflows/test-vr.yml | 0 .../tests/Fixtures/schema/broken_json.json | 0 .../tests/Fixtures/schema/empty.json | 0 .../tests/Fixtures/schema/empty_file.txt | 0 .../schema/invalid_confirm_not_boolean.json | 0 .../schema/invalid_database_source.json | 0 .../schema/invalid_hosting_provider.json | 0 .../schema/invalid_provision_type.json | 0 .../tests/Fixtures/schema/json_array.json | 0 .../tests/Fixtures/schema/json_string.json | 0 .../tests/Fixtures/schema/not_json.txt | 0 .../tests/Fixtures/schema/valid_acquia.json | 0 .../schema/valid_database_provision.json | 0 .../tests/Fixtures/schema/valid_full.json | 0 .../Fixtures/schema/valid_migration.json | 0 .../tests/Fixtures/schema/valid_minimal.json | 0 .../schema/warning_unmet_dependency.json | 0 .../Functional/Command/BuildCommandTest.php | 16 +-- .../Command/CheckRequirementsCommandTest.php | 12 +- .../Functional/Command/InstallCommandTest.php | 34 +++--- .../Command/SchemaValidateCommandTest.php | 22 ++-- .../tests/Functional/FunctionalTestCase.php | 16 +-- .../AbstractHandlerProcessTestCase.php | 8 +- .../AiCodeInstructionsHandlerProcessTest.php | 4 +- .../Handlers/BaselineHandlerProcessTest.php | 60 +++++----- .../Handlers/CiProviderHandlerProcessTest.php | 6 +- ...CodeCoverageProviderHandlerProcessTest.php | 6 +- .../CodeProviderHandlerProcessTest.php | 4 +- .../CustomModulesHandlerProcessTest.php | 10 +- .../DatabaseFetchSourceHandlerProcessTest.php | 10 +- ...dencyUpdatesProviderHandlerProcessTest.php | 6 +- .../Handlers/DeployTypeHandlerProcessTest.php | 8 +- .../Handlers/DocsHandlerProcessTest.php | 4 +- .../FrontendBuildHandlerProcessTest.php | 4 +- .../Handlers/GitleaksHandlerProcessTest.php | 4 +- .../HostingProjectNameHandlerProcessTest.php | 6 +- .../HostingProviderHandlerProcessTest.php | 8 +- ...MigrationFetchSourceHandlerProcessTest.php | 8 +- .../Handlers/MigrationHandlerProcessTest.php | 8 +- .../Handlers/ModulesHandlerProcessTest.php | 6 +- .../Handlers/NamesHandlerProcessTest.php | 18 +-- ...NotificationChannelsHandlerProcessTest.php | 4 +- .../Handlers/ProfileHandlerProcessTest.php | 6 +- .../ProvisionTypeHandlerProcessTest.php | 12 +- .../PullRequestHandlerProcessTest.php | 6 +- .../Handlers/ServicesHandlerProcessTest.php | 8 +- .../Handlers/StarterHandlerProcessTest.php | 6 +- .../Handlers/ThemeHandlerProcessTest.php | 10 +- .../Handlers/TimezoneHandlerProcessTest.php | 6 +- .../Handlers/ToolsHandlerProcessTest.php | 10 +- .../VersionSchemeHandlerProcessTest.php | 4 +- .../VisualRegressionHandlerProcessTest.php | 4 +- .../tests/Functional/PharTest.php | 6 +- .../tests/Helpers/TuiOutput.php | 4 +- .../tests/Traits/TuiTrait.php | 4 +- .../tests/Unit/ConfigTest.php | 6 +- .../tests/Unit/ConverterTest.php | 4 +- .../tests/Unit/Downloader/ArchiverTest.php | 6 +- .../tests/Unit/Downloader/ArtifactTest.php | 6 +- .../tests/Unit/Downloader/DownloaderTest.php | 6 +- .../Downloader/RepositoryDownloaderTest.php | 18 +-- .../{installer => cli}/tests/Unit/EnvTest.php | 6 +- .../tests/Unit/FileTest.php | 4 +- .../tests/Unit/Fixtures/env/.expected/.env | 0 .../tests/Unit/Fixtures/env/_baseline/.env | 0 .../tests/Unit/Fixtures/env/after/.env | 0 .../{installer => cli}/tests/Unit/GitTest.php | 8 +- .../AbstractHandlerDiscoveryTestCase.php | 90 +++++++-------- .../Unit/Handlers/AbstractHandlerTypeTest.php | 88 +++++++------- ...AiCodeInstructionsHandlerDiscoveryTest.php | 8 +- .../Handlers/BaselineHandlerDiscoveryTest.php | 20 ++-- .../CiProviderHandlerDiscoveryTest.php | 8 +- ...deCoverageProviderHandlerDiscoveryTest.php | 10 +- .../CodeProviderHandlerDiscoveryTest.php | 12 +- .../CustomModulesHandlerDiscoveryTest.php | 8 +- ...atabaseFetchSourceHandlerDiscoveryTest.php | 4 +- .../DatabaseImageHandlerDiscoveryTest.php | 8 +- ...ncyUpdatesProviderHandlerDiscoveryTest.php | 10 +- .../DeployTypesHandlerDiscoveryTest.php | 8 +- .../Handlers/DocsHandlerDiscoveryTest.php | 8 +- .../Handlers/DomainHandlerDiscoveryTest.php | 4 +- .../FrontendBuildHandlerDiscoveryTest.php | 8 +- ...HostingProjectNameHandlerDiscoveryTest.php | 16 +-- .../HostingProviderHandlerDiscoveryTest.php | 16 +-- ...grationFetchSourceHandlerDiscoveryTest.php | 6 +- .../MigrationHandlerDiscoveryTest.php | 12 +- .../MigrationImageHandlerDiscoveryTest.php | 10 +- .../ModulePrefixHandlerDiscoveryTest.php | 8 +- .../Handlers/ModulesHandlerDiscoveryTest.php | 8 +- .../Handlers/NamesHandlerDiscoveryTest.php | 16 +-- ...tificationChannelsHandlerDiscoveryTest.php | 8 +- .../Handlers/ProfileHandlerDiscoveryTest.php | 8 +- .../ProvisionTypeHandlerDiscoveryTest.php | 8 +- .../PullRequestHandlerDiscoveryTest.php | 10 +- .../Handlers/ServicesHandlerDiscoveryTest.php | 10 +- .../Handlers/StarterHandlerDiscoveryTest.php | 8 +- .../Handlers/ThemeHandlerDiscoveryTest.php | 10 +- .../Handlers/TimezoneHandlerDiscoveryTest.php | 6 +- .../Handlers/ToolsHandlerDiscoveryTest.php | 8 +- .../VersionSchemeHandlerDiscoveryTest.php | 6 +- .../Handlers/WebrootHandlerDiscoveryTest.php | 8 +- .../tests/Unit/JsonManipulatorTest.php | 6 +- .../tests/Unit/Logger/FileLoggerTest.php | 6 +- .../Unit/Prompts/InstallerPresenterTest.php | 20 ++-- .../tests/Unit/Prompts/PromptTypeTest.php | 6 +- .../tests/Unit/Runner/AbstractRunnerTest.php | 12 +- .../tests/Unit/Runner/CommandRunnerTest.php | 10 +- .../tests/Unit/Runner/ProcessRunnerTest.php | 8 +- .../tests/Unit/Schema/AgentHelpTest.php | 6 +- .../tests/Unit/Schema/SchemaGeneratorTest.php | 36 +++--- .../tests/Unit/Schema/SchemaValidatorTest.php | 42 +++---- .../tests/Unit/SelfTest.php | 2 +- .../tests/Unit/StringsTest.php | 4 +- .../tests/Unit/Task/TaskOutputTest.php | 6 +- .../tests/Unit/TaskTest.php | 6 +- .../{installer => cli}/tests/Unit/TuiTest.php | 6 +- .../tests/Unit/UnitTestCase.php | 4 +- .../tests/Unit/Utils/FileManagerTest.php | 10 +- .../tests/Unit/Utils/OptionsResolverTest.php | 12 +- .../tests/Unit/ValidatorTest.php | 4 +- .../tests/Unit/VersionTest.php | 4 +- .../tests/Unit/YamlTest.php | 4 +- .../{installer/installer.php => cli/vortex} | 6 +- 3416 files changed, 917 insertions(+), 917 deletions(-) rename .vortex/{installer => cli}/.gitignore (100%) rename .vortex/{installer => cli}/CLAUDE.md (100%) rename .vortex/{installer => cli}/README.md (100%) rename .vortex/{installer => cli}/box.json (100%) rename .vortex/{installer => cli}/composer.json (96%) rename .vortex/{installer => cli}/composer.lock (100%) rename .vortex/{installer => cli}/patches.lock.json (100%) rename .vortex/{installer => cli}/patches/laravel-prompts.patch (100%) rename .vortex/{installer => cli}/patches/reroot-patch.php (100%) rename .vortex/{installer => cli}/phpcs.xml (100%) rename .vortex/{installer => cli}/phpstan.neon (100%) rename .vortex/{installer => cli}/phpunit.xml (100%) rename .vortex/{installer => cli}/playground/task-streaming.php (98%) rename .vortex/{installer => cli}/playground/task.php (98%) rename .vortex/{installer => cli}/playground/tui.php (99%) rename .vortex/{installer => cli}/rector.php (100%) rename .vortex/{installer => cli}/src/Command/BuildCommand.php (93%) rename .vortex/{installer => cli}/src/Command/CheckRequirementsCommand.php (95%) rename .vortex/{installer => cli}/src/Command/DestinationAwareTrait.php (97%) rename .vortex/{installer => cli}/src/Command/InstallCommand.php (91%) rename .vortex/{installer => cli}/src/Downloader/Archiver.php (99%) rename .vortex/{installer => cli}/src/Downloader/ArchiverInterface.php (96%) rename .vortex/{installer => cli}/src/Downloader/Artifact.php (99%) rename .vortex/{installer => cli}/src/Downloader/Downloader.php (96%) rename .vortex/{installer => cli}/src/Downloader/RepositoryDownloader.php (96%) rename .vortex/{installer => cli}/src/Downloader/RepositoryDownloaderInterface.php (90%) rename .vortex/{installer => cli}/src/Logger/FileLogger.php (97%) rename .vortex/{installer => cli}/src/Logger/FileLoggerInterface.php (94%) rename .vortex/{installer => cli}/src/Logger/LoggableInterface.php (83%) rename .vortex/{installer => cli}/src/Logger/LoggerInterface.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/AbstractHandler.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/AiCodeInstructions.php (92%) rename .vortex/{installer => cli}/src/Prompts/Handlers/AssignAuthorPr.php (90%) rename .vortex/{installer => cli}/src/Prompts/Handlers/CiProvider.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/CodeCoverageProvider.php (94%) rename .vortex/{installer => cli}/src/Prompts/Handlers/CodeProvider.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/CustomModules.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/DatabaseFetchSource.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/DatabaseImage.php (93%) rename .vortex/{installer => cli}/src/Prompts/Handlers/DependencyUpdatesProvider.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/DeployTypes.php (93%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Domain.php (88%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Dotenv.php (85%) rename .vortex/{installer => cli}/src/Prompts/Handlers/FrontendBuild.php (95%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Gitleaks.php (92%) rename .vortex/{installer => cli}/src/Prompts/Handlers/HandlerInterface.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/HostingProjectName.php (94%) rename .vortex/{installer => cli}/src/Prompts/Handlers/HostingProvider.php (95%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Internal.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/LabelMergeConflictsPr.php (91%) rename .vortex/{installer => cli}/src/Prompts/Handlers/MachineName.php (89%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Migration.php (89%) rename .vortex/{installer => cli}/src/Prompts/Handlers/MigrationFetchSource.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/MigrationImage.php (93%) rename .vortex/{installer => cli}/src/Prompts/Handlers/ModulePrefix.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Modules.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Name.php (89%) rename .vortex/{installer => cli}/src/Prompts/Handlers/NotificationChannels.php (94%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Org.php (89%) rename .vortex/{installer => cli}/src/Prompts/Handlers/OrgMachineName.php (90%) rename .vortex/{installer => cli}/src/Prompts/Handlers/PreserveDocsProject.php (91%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Profile.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/ProfileCustom.php (95%) rename .vortex/{installer => cli}/src/Prompts/Handlers/ProvisionType.php (92%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Services.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Starter.php (96%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Theme.php (97%) rename .vortex/{installer => cli}/src/Prompts/Handlers/ThemeCustom.php (95%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Timezone.php (99%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Tools.php (98%) rename .vortex/{installer => cli}/src/Prompts/Handlers/VersionScheme.php (93%) rename .vortex/{installer => cli}/src/Prompts/Handlers/VisualRegression.php (95%) rename .vortex/{installer => cli}/src/Prompts/Handlers/Webroot.php (93%) rename .vortex/{installer => cli}/src/Prompts/InstallerPresenter.php (96%) rename .vortex/{installer => cli}/src/Prompts/PromptManager.php (88%) rename .vortex/{installer => cli}/src/Prompts/PromptType.php (87%) rename .vortex/{installer => cli}/src/Runner/AbstractRunner.php (97%) rename .vortex/{installer => cli}/src/Runner/CommandRunner.php (96%) rename .vortex/{installer => cli}/src/Runner/CommandRunnerAwareInterface.php (71%) rename .vortex/{installer => cli}/src/Runner/CommandRunnerAwareTrait.php (83%) rename .vortex/{installer => cli}/src/Runner/ExecutableFinderAwareInterface.php (93%) rename .vortex/{installer => cli}/src/Runner/ExecutableFinderAwareTrait.php (96%) rename .vortex/{installer => cli}/src/Runner/ProcessRunner.php (99%) rename .vortex/{installer => cli}/src/Runner/ProcessRunnerAwareInterface.php (71%) rename .vortex/{installer => cli}/src/Runner/ProcessRunnerAwareTrait.php (81%) rename .vortex/{installer => cli}/src/Runner/RunnerInterface.php (95%) rename .vortex/{installer => cli}/src/Schema/AgentHelp.php (98%) rename .vortex/{installer => cli}/src/Schema/SchemaGenerator.php (81%) rename .vortex/{installer => cli}/src/Schema/SchemaValidator.php (94%) rename .vortex/{installer => cli}/src/Task/Task.php (96%) rename .vortex/{installer => cli}/src/Task/TaskOutput.php (97%) rename .vortex/{installer => cli}/src/Utils/Config.php (97%) rename .vortex/{installer => cli}/src/Utils/Converter.php (87%) rename .vortex/{installer => cli}/src/Utils/Env.php (99%) rename .vortex/{installer => cli}/src/Utils/File.php (98%) rename .vortex/{installer => cli}/src/Utils/FileManager.php (95%) rename .vortex/{installer => cli}/src/Utils/Git.php (98%) rename .vortex/{installer => cli}/src/Utils/JsonManipulator.php (97%) rename .vortex/{installer => cli}/src/Utils/Normalizer.php (92%) rename .vortex/{installer => cli}/src/Utils/OptionsResolver.php (97%) rename .vortex/{installer => cli}/src/Utils/Strings.php (99%) rename .vortex/{installer => cli}/src/Utils/Tui.php (99%) rename .vortex/{installer => cli}/src/Utils/Validator.php (97%) rename .vortex/{installer => cli}/src/Utils/Version.php (98%) rename .vortex/{installer => cli}/src/Utils/Yaml.php (98%) rename .vortex/{installer => cli}/tests/Fixtures/.editorconfig (100%) rename .vortex/{installer => cli}/tests/Fixtures/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.ahoy.local.example.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.claude/settings.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.dclintrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/clamav.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/clamav/clamav.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/database/my.cnf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/nginx/redirects-map.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/elevate.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_fields.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_types.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_extra.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_index.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_query.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_requestdispatcher.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrcore.properties (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stoptags_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ko.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/database.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/nginx-drupal.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/php.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/scripts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/scripts/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.docker/solr.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.editorconfig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/PULL_REQUEST_TEMPLATE.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/release-drafter.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/workflows/assign-author.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/workflows/draft-release-notes.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.github/workflows/label-merge-conflict.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.gitleaks.toml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/CLAUDE.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/ci/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/ci/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/default/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/default/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/dev/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/dev/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/local/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/local/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/stage/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/config/stage/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/faqs.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/releasing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/drush/drush.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/drush/php-ini/drush.ini (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_form_display.node.page.default.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.default.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.teaser.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.field.node.page.body.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.storage.node.body.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/config/node.type.page.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/recipes/page/recipe.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/renovate.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/scripts/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/scripts/sanitize.sql (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/scripts/vortex-tooling.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/bootstrap/FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/behat/features/xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/tests/phpunit/bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/autoload.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/autoload_runtime.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/index.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/css/sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/tests/sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/default.services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/example.services.local.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/example.settings.local.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.automated_cron.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.system.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.trusted_hosts.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/fonts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/images/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/js/star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/components/_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ai_instructions_disabled/-AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ai_instructions_disabled/-CLAUDE.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ai_instructions_disabled/.claude/-settings.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ai_instructions_disabled/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ai_instructions_disabled/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/assign_author_pr_disabled/.github/workflows/-assign-author.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/assign_author_pr_enabled/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/ciprovider_gha/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_github/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/-PULL_REQUEST_TEMPLATE.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/-release-drafter.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-assign-author.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-draft-release-notes.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-label-merge-conflict.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/code_provider_other/renovate.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/css/-sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/-sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/css/-sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/-sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/-solr.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-elevate.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_fields.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_types.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_extra.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_index.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_query.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrcore.properties (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stoptags_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ko.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/sites/default/includes/modules/-settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_acquia/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_acquia/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_acquia/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_container_registry/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_ftp/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_ftp/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_s3/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/db_fetch_source_s3/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/.gitignore.artifact (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_gha/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_gha/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_all_gha/.gitignore.artifact (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_artifact/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_artifact/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_artifact/.gitignore.artifact (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_container_image/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/-deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_gha/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_gha/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_gha/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_none_gha/docs/-deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deploy_types_webhook/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/update-dependencies.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/update-dependencies.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.github/workflows/update-dependencies.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_none/-renovate.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_none/.github/workflows/update-dependencies.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/deps_updates_provider_none/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/frontend_build_skip/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/gitleaks_disabled/-.gitleaks.toml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/gitleaks_disabled/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.docker/nginx-drupal.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.gitignore.artifact (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.gitleaks.toml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload_runtime.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/index.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/css/sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.services.local.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.settings.local.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.automated_cron.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.system.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/fonts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/images/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/js/star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/components/_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/README.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-deploy (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/1.provision.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/2.purge-cache.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/3.notify-deployment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-db-copy (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-db.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-files.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/domains.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/notify-deployment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/provision.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/library/purge-cache.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-deploy/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-update (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/-autoload.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/-autoload_runtime.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/-index.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/css/-sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/-sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.services.local.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.settings.local.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.automated_cron.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.system.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/close-pull-request.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/.lagoon.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/drush/sites/lagoon.site.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/nginx-drupal.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore.artifact (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitleaks.toml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/.htaccess (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload_runtime.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/index.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/css/sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.services.local.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.settings.local.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.automated_cron.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.system.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/fonts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/images/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/js/star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/components/_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/README.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-deploy (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/1.provision.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/2.purge-cache.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/3.notify-deployment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-db-copy (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-db.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-files.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/domains.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/notify-deployment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/provision.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/purge-cache.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-deploy/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-update (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload_runtime.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-index.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/css/-sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/-sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.services.local.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.settings.local.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-services.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.automated_cron.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.system.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/close-pull-request.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/.lagoon.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/drush/sites/lagoon.site.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/hosting_project_name___lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/label_merge_conflicts_pr_disabled/.github/workflows/-label-merge-conflict.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/label_merge_conflicts_pr_enabled/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/close-pull-request.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/.lagoon.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/drush/sites/lagoon.site.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_disabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/close-pull-request.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/.lagoon.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/drush/sites/lagoon.site.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/ys_migrate.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.migration.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_admin_toolbar/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_admin_toolbar/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_coffee/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_coffee/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_split/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_split/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_split/web/sites/default/includes/modules/-settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_update/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_config_update/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_devel/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_devel/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_devel/web/sites/default/includes/modules/-settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_drupal_helpers/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_environment_indicator/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_environment_indicator/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_environment_indicator/web/sites/default/includes/modules/-settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_generated_content/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_generated_content/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_generated_content/web/sites/default/includes/modules/-settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_pathauto/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_pathauto/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_redirect/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_redirect/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_reroute_email/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_reroute_email/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_reroute_email/web/sites/default/includes/modules/-settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_robotstxt/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_robotstxt/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_robotstxt/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_robotstxt/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_robotstxt/web/sites/default/includes/modules/-settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_sdc_devel/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_sdc_devel/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_sdc_devel/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_sdc_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit/web/sites/default/includes/modules/-settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_shield/web/sites/default/includes/modules/-settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_stage_file_proxy/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_stage_file_proxy/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_testmode/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_testmode/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_testmode/web/sites/default/includes/modules/-settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_xmlsitemap/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/sites/default/includes/modules/-settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.config_split.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.devel.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.environment_indicator.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.generated_content.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.robotstxt.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.seckit.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.shield.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.stage_file_proxy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.testmode.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.xmlsitemap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/.docker/config/nginx/redirects-map.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/tests/behat/features/counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/css/-sw_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/-sw_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/TheForceBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/TheForceBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/TheForceBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/TheForceBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/config/install/views.view.the_force_demo_pages.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/css/the_force_demo.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/tests/the_force_demo.test.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/the_force_demo.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/GeneratedContent/Node/Page.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/templates/the-force-demo-counter-block.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/FunctionalJavascript/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Kernel/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Unit/CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/src/Plugin/DeployStep/RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/-settings.sw_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.reroute_email.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.the_force_base.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/fonts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/images/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/js/lightsaber.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/components/_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/templates/layout/region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/LightsaberFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/LightsaberFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/LightsaberKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/LightsaberUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_file/web/sites/default/includes/modules/-settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/.docker/-clamav.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/.docker/config/clamav/-clamav.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/non_interactive_config_string/web/sites/default/includes/modules/-settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_all/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_email_only/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_github_only/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_jira_only/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_newrelic_only/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_none/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_slack_only/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/notification_channels_webhook_only/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-faqs.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-releasing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/preserve_docs_project_enabled/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/profile_minimal/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/profile_the_empire/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/profile_the_empire/web/profiles/custom/the_empire/the_empire.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/close-pull-request.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/.lagoon.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/docs/deployment.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/drush/sites/lagoon.site.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_database_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile/scripts/-sanitize.sql (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.env.local.example (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/scripts/-sanitize.sql (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/.docker/-clamav.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/.docker/config/clamav/-clamav.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_clamav/web/sites/default/includes/modules/-settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_redis/web/sites/default/includes/modules/-settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/-solr.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-elevate.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_fields.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_types.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_extra.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_index.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_query.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrcore.properties (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stoptags_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ko.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_no_solr/web/sites/default/includes/modules/-settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/-clamav.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/-solr.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/clamav/-clamav.conf (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-elevate.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_fields.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_types.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_extra.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_index.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_query.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrcore.properties (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stoptags_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ja.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ko.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ar.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_bg.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ca.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cs.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cy.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_da.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_de.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_el.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_en.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_es.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_et.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fa.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ga.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hi.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hu.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_id.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_it.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_lv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nb.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nn.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pl.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_br.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_pt.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ro.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ru.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sv.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_th.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_tr.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_uk.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_und.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/docker-compose.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.install (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-views.view.search.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.clamav.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.search_api.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/starter_demo_db/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/starter_drupal_cms_profile/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/starter_drupal_cms_profile/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/starter_drupal_profile/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/fonts/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/images/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/js/light_saber.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/patches/.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/components/_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/templates/layout/region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/LightSaberFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/LightSaberFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/LightSaberKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/LightSaberUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/styles.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/renovate.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_gha/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/timezone_gha/renovate.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/-rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/-behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/-gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/-phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/bootstrap/-FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/-bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/bootstrap/-FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/-bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/-behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/-gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/bootstrap/-FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/-behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/-gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/bootstrap/-FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/-phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/-phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/-phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/-phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/-phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/-bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/-phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/-bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector/-rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/-rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.npmrc (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-logo.svg (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-postcss.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.theme (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.css (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/images/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/js/-star_wars.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_components.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-styles.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/-.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/-.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/config.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/post-coverage-comment.sh (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.github/workflows/-build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/README.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/docs/ci.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/CircleCiConfigTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.eslintignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.eslintrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.prettierignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.prettierrc.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.stylelintrc.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-.twig-cs-fixer.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-behat.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-gherkinlint.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-jest.config.js (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-package.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-phpcs.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-phpstan.neon (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-phpunit.xml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/-rector.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/.ahoy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/.dockerignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/.github/workflows/build-test-deploy.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/.gitignore (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/AGENTS.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/composer.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/docs/testing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/bootstrap/-FeatureContext.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-accessibility.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-behat.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-clamav.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-counter.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-homepage.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-login.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-pages.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-redis.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-robotstxt.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-search.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/behat/features/-xmlsitemap.feature (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/phpunit/-bootstrap.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-DatabaseSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-EnvironmentSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SettingsTestCase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SwitchableSettingsTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/sw_demo.module (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/sites/default/default.settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.fast404.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.redis.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/sites/default/settings.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/version_scheme_calver/.ignorecontent (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/version_scheme_other/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/version_scheme_other/docs/releasing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/version_scheme_semver/.env (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/version_scheme_semver/docs/releasing.md (100%) rename .vortex/{installer => cli}/tests/Fixtures/handler_process/visual_regression_enabled/.github/workflows/test-vr.yml (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/broken_json.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/empty.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/empty_file.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/invalid_confirm_not_boolean.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/invalid_database_source.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/invalid_hosting_provider.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/invalid_provision_type.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/json_array.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/json_string.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/not_json.txt (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/valid_acquia.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/valid_database_provision.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/valid_full.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/valid_migration.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/valid_minimal.json (100%) rename .vortex/{installer => cli}/tests/Fixtures/schema/warning_unmet_dependency.json (100%) rename .vortex/{installer => cli}/tests/Functional/Command/BuildCommandTest.php (97%) rename .vortex/{installer => cli}/tests/Functional/Command/CheckRequirementsCommandTest.php (97%) rename .vortex/{installer => cli}/tests/Functional/Command/InstallCommandTest.php (96%) rename .vortex/{installer => cli}/tests/Functional/Command/SchemaValidateCommandTest.php (94%) rename .vortex/{installer => cli}/tests/Functional/FunctionalTestCase.php (90%) rename .vortex/{installer => cli}/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php (92%) rename .vortex/{installer => cli}/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php (90%) rename .vortex/{installer => cli}/tests/Functional/Handlers/BaselineHandlerProcessTest.php (60%) rename .vortex/{installer => cli}/tests/Functional/Handlers/CiProviderHandlerProcessTest.php (87%) rename .vortex/{installer => cli}/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php (79%) rename .vortex/{installer => cli}/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php (91%) rename .vortex/{installer => cli}/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php (88%) rename .vortex/{installer => cli}/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php (88%) rename .vortex/{installer => cli}/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php (85%) rename .vortex/{installer => cli}/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php (91%) rename .vortex/{installer => cli}/tests/Functional/Handlers/DocsHandlerProcessTest.php (81%) rename .vortex/{installer => cli}/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php (88%) rename .vortex/{installer => cli}/tests/Functional/Handlers/GitleaksHandlerProcessTest.php (81%) rename .vortex/{installer => cli}/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php (87%) rename .vortex/{installer => cli}/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php (84%) rename .vortex/{installer => cli}/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php (95%) rename .vortex/{installer => cli}/tests/Functional/Handlers/MigrationHandlerProcessTest.php (96%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ModulesHandlerProcessTest.php (97%) rename .vortex/{installer => cli}/tests/Functional/Handlers/NamesHandlerProcessTest.php (61%) rename .vortex/{installer => cli}/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php (97%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ProfileHandlerProcessTest.php (77%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php (84%) rename .vortex/{installer => cli}/tests/Functional/Handlers/PullRequestHandlerProcessTest.php (82%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ServicesHandlerProcessTest.php (86%) rename .vortex/{installer => cli}/tests/Functional/Handlers/StarterHandlerProcessTest.php (87%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ThemeHandlerProcessTest.php (93%) rename .vortex/{installer => cli}/tests/Functional/Handlers/TimezoneHandlerProcessTest.php (92%) rename .vortex/{installer => cli}/tests/Functional/Handlers/ToolsHandlerProcessTest.php (98%) rename .vortex/{installer => cli}/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php (93%) rename .vortex/{installer => cli}/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php (81%) rename .vortex/{installer => cli}/tests/Functional/PharTest.php (96%) rename .vortex/{installer => cli}/tests/Helpers/TuiOutput.php (98%) rename .vortex/{installer => cli}/tests/Traits/TuiTrait.php (93%) rename .vortex/{installer => cli}/tests/Unit/ConfigTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/ConverterTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/Downloader/ArchiverTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Downloader/ArtifactTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Downloader/DownloaderTest.php (95%) rename .vortex/{installer => cli}/tests/Unit/Downloader/RepositoryDownloaderTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/EnvTest.php (99%) rename .vortex/{installer => cli}/tests/Unit/FileTest.php (97%) rename .vortex/{installer => cli}/tests/Unit/Fixtures/env/.expected/.env (100%) rename .vortex/{installer => cli}/tests/Unit/Fixtures/env/_baseline/.env (100%) rename .vortex/{installer => cli}/tests/Unit/Fixtures/env/after/.env (100%) rename .vortex/{installer => cli}/tests/Unit/GitTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php (77%) rename .vortex/{installer => cli}/tests/Unit/Handlers/AbstractHandlerTypeTest.php (59%) rename .vortex/{installer => cli}/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php (73%) rename .vortex/{installer => cli}/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php (90%) rename .vortex/{installer => cli}/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php (90%) rename .vortex/{installer => cli}/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php (84%) rename .vortex/{installer => cli}/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php (94%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php (89%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php (90%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php (88%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php (89%) rename .vortex/{installer => cli}/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php (95%) rename .vortex/{installer => cli}/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php (91%) rename .vortex/{installer => cli}/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php (90%) rename .vortex/{installer => cli}/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php (84%) rename .vortex/{installer => cli}/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php (88%) rename .vortex/{installer => cli}/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php (86%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php (93%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php (93%) rename .vortex/{installer => cli}/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php (94%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php (90%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php (86%) rename .vortex/{installer => cli}/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php (93%) rename .vortex/{installer => cli}/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php (87%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php (93%) rename .vortex/{installer => cli}/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php (87%) rename .vortex/{installer => cli}/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php (92%) rename .vortex/{installer => cli}/tests/Unit/JsonManipulatorTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Logger/FileLoggerTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Prompts/InstallerPresenterTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/Prompts/PromptTypeTest.php (93%) rename .vortex/{installer => cli}/tests/Unit/Runner/AbstractRunnerTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Runner/CommandRunnerTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/Runner/ProcessRunnerTest.php (98%) rename .vortex/{installer => cli}/tests/Unit/Schema/AgentHelpTest.php (95%) rename .vortex/{installer => cli}/tests/Unit/Schema/SchemaGeneratorTest.php (83%) rename .vortex/{installer => cli}/tests/Unit/Schema/SchemaValidatorTest.php (84%) rename .vortex/{installer => cli}/tests/Unit/SelfTest.php (97%) rename .vortex/{installer => cli}/tests/Unit/StringsTest.php (99%) rename .vortex/{installer => cli}/tests/Unit/Task/TaskOutputTest.php (95%) rename .vortex/{installer => cli}/tests/Unit/TaskTest.php (99%) rename .vortex/{installer => cli}/tests/Unit/TuiTest.php (99%) rename .vortex/{installer => cli}/tests/Unit/UnitTestCase.php (95%) rename .vortex/{installer => cli}/tests/Unit/Utils/FileManagerTest.php (97%) rename .vortex/{installer => cli}/tests/Unit/Utils/OptionsResolverTest.php (96%) rename .vortex/{installer => cli}/tests/Unit/ValidatorTest.php (99%) rename .vortex/{installer => cli}/tests/Unit/VersionTest.php (97%) rename .vortex/{installer => cli}/tests/Unit/YamlTest.php (98%) rename .vortex/{installer/installer.php => cli/vortex} (77%) diff --git a/.gitattributes b/.gitattributes index 0baddba63c..640d3d9a96 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,6 +8,6 @@ /.vortex/.ahoy.yml export-ignore /.vortex/CLAUDE.md export-ignore /.vortex/README.md export-ignore +/.vortex/cli export-ignore /.vortex/docs export-ignore -/.vortex/installer export-ignore /.vortex/tests export-ignore diff --git a/.vortex/installer/.gitignore b/.vortex/cli/.gitignore similarity index 100% rename from .vortex/installer/.gitignore rename to .vortex/cli/.gitignore diff --git a/.vortex/installer/CLAUDE.md b/.vortex/cli/CLAUDE.md similarity index 100% rename from .vortex/installer/CLAUDE.md rename to .vortex/cli/CLAUDE.md diff --git a/.vortex/installer/README.md b/.vortex/cli/README.md similarity index 100% rename from .vortex/installer/README.md rename to .vortex/cli/README.md diff --git a/.vortex/installer/box.json b/.vortex/cli/box.json similarity index 100% rename from .vortex/installer/box.json rename to .vortex/cli/box.json diff --git a/.vortex/installer/composer.json b/.vortex/cli/composer.json similarity index 96% rename from .vortex/installer/composer.json rename to .vortex/cli/composer.json index c531ef632a..0e7cbd7572 100644 --- a/.vortex/installer/composer.json +++ b/.vortex/cli/composer.json @@ -49,12 +49,12 @@ }, "autoload": { "psr-4": { - "DrevOps\\VortexInstaller\\": "src/" + "DrevOps\\VortexCli\\": "src/" } }, "autoload-dev": { "psr-4": { - "DrevOps\\VortexInstaller\\Tests\\": "tests" + "DrevOps\\VortexCli\\Tests\\": "tests" }, "classmap": [ "tests" diff --git a/.vortex/installer/composer.lock b/.vortex/cli/composer.lock similarity index 100% rename from .vortex/installer/composer.lock rename to .vortex/cli/composer.lock diff --git a/.vortex/installer/patches.lock.json b/.vortex/cli/patches.lock.json similarity index 100% rename from .vortex/installer/patches.lock.json rename to .vortex/cli/patches.lock.json diff --git a/.vortex/installer/patches/laravel-prompts.patch b/.vortex/cli/patches/laravel-prompts.patch similarity index 100% rename from .vortex/installer/patches/laravel-prompts.patch rename to .vortex/cli/patches/laravel-prompts.patch diff --git a/.vortex/installer/patches/reroot-patch.php b/.vortex/cli/patches/reroot-patch.php similarity index 100% rename from .vortex/installer/patches/reroot-patch.php rename to .vortex/cli/patches/reroot-patch.php diff --git a/.vortex/installer/phpcs.xml b/.vortex/cli/phpcs.xml similarity index 100% rename from .vortex/installer/phpcs.xml rename to .vortex/cli/phpcs.xml diff --git a/.vortex/installer/phpstan.neon b/.vortex/cli/phpstan.neon similarity index 100% rename from .vortex/installer/phpstan.neon rename to .vortex/cli/phpstan.neon diff --git a/.vortex/installer/phpunit.xml b/.vortex/cli/phpunit.xml similarity index 100% rename from .vortex/installer/phpunit.xml rename to .vortex/cli/phpunit.xml diff --git a/.vortex/installer/playground/task-streaming.php b/.vortex/cli/playground/task-streaming.php similarity index 98% rename from .vortex/installer/playground/task-streaming.php rename to .vortex/cli/playground/task-streaming.php index 3370fd29ab..6ff5b57693 100644 --- a/.vortex/installer/playground/task-streaming.php +++ b/.vortex/cli/playground/task-streaming.php @@ -12,8 +12,8 @@ require_once __DIR__ . '/../vendor/autoload.php'; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\ConsoleOutput; $output = new ConsoleOutput(); diff --git a/.vortex/installer/playground/task.php b/.vortex/cli/playground/task.php similarity index 98% rename from .vortex/installer/playground/task.php rename to .vortex/cli/playground/task.php index 8d2ef646ee..4602098926 100755 --- a/.vortex/installer/playground/task.php +++ b/.vortex/cli/playground/task.php @@ -12,8 +12,8 @@ require_once __DIR__ . '/../vendor/autoload.php'; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\ConsoleOutput; $output = new ConsoleOutput(); diff --git a/.vortex/installer/playground/tui.php b/.vortex/cli/playground/tui.php similarity index 99% rename from .vortex/installer/playground/tui.php rename to .vortex/cli/playground/tui.php index 54bca3b7e2..7e7169c5a0 100755 --- a/.vortex/installer/playground/tui.php +++ b/.vortex/cli/playground/tui.php @@ -12,7 +12,7 @@ require_once __DIR__ . '/../vendor/autoload.php'; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\ConsoleOutput; $output = new ConsoleOutput(); diff --git a/.vortex/installer/rector.php b/.vortex/cli/rector.php similarity index 100% rename from .vortex/installer/rector.php rename to .vortex/cli/rector.php diff --git a/.vortex/installer/src/Command/BuildCommand.php b/.vortex/cli/src/Command/BuildCommand.php similarity index 93% rename from .vortex/installer/src/Command/BuildCommand.php rename to .vortex/cli/src/Command/BuildCommand.php index d65c0619c4..5339f8ecc4 100644 --- a/.vortex/installer/src/Command/BuildCommand.php +++ b/.vortex/cli/src/Command/BuildCommand.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Command; - -use DrevOps\VortexInstaller\Runner\CommandRunnerAwareInterface; -use DrevOps\VortexInstaller\Runner\CommandRunnerAwareTrait; -use DrevOps\VortexInstaller\Runner\ProcessRunnerAwareInterface; -use DrevOps\VortexInstaller\Runner\ProcessRunnerAwareTrait; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Tui; +namespace DrevOps\VortexCli\Command; + +use DrevOps\VortexCli\Runner\CommandRunnerAwareInterface; +use DrevOps\VortexCli\Runner\CommandRunnerAwareTrait; +use DrevOps\VortexCli\Runner\ProcessRunnerAwareInterface; +use DrevOps\VortexCli\Runner\ProcessRunnerAwareTrait; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/.vortex/installer/src/Command/CheckRequirementsCommand.php b/.vortex/cli/src/Command/CheckRequirementsCommand.php similarity index 95% rename from .vortex/installer/src/Command/CheckRequirementsCommand.php rename to .vortex/cli/src/Command/CheckRequirementsCommand.php index 39e25c154f..1351412144 100644 --- a/.vortex/installer/src/Command/CheckRequirementsCommand.php +++ b/.vortex/cli/src/Command/CheckRequirementsCommand.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Command; - -use DrevOps\VortexInstaller\Runner\ExecutableFinderAwareInterface; -use DrevOps\VortexInstaller\Runner\ExecutableFinderAwareTrait; -use DrevOps\VortexInstaller\Runner\ProcessRunner; -use DrevOps\VortexInstaller\Runner\ProcessRunnerAwareInterface; -use DrevOps\VortexInstaller\Runner\ProcessRunnerAwareTrait; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Tui; +namespace DrevOps\VortexCli\Command; + +use DrevOps\VortexCli\Runner\ExecutableFinderAwareInterface; +use DrevOps\VortexCli\Runner\ExecutableFinderAwareTrait; +use DrevOps\VortexCli\Runner\ProcessRunner; +use DrevOps\VortexCli\Runner\ProcessRunnerAwareInterface; +use DrevOps\VortexCli\Runner\ProcessRunnerAwareTrait; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/.vortex/installer/src/Command/DestinationAwareTrait.php b/.vortex/cli/src/Command/DestinationAwareTrait.php similarity index 97% rename from .vortex/installer/src/Command/DestinationAwareTrait.php rename to .vortex/cli/src/Command/DestinationAwareTrait.php index b082c53b3b..06c306fdbe 100644 --- a/.vortex/installer/src/Command/DestinationAwareTrait.php +++ b/.vortex/cli/src/Command/DestinationAwareTrait.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Command; +namespace DrevOps\VortexCli\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/.vortex/installer/src/Command/InstallCommand.php b/.vortex/cli/src/Command/InstallCommand.php similarity index 91% rename from .vortex/installer/src/Command/InstallCommand.php rename to .vortex/cli/src/Command/InstallCommand.php index e8620f894a..7bbf650b91 100644 --- a/.vortex/installer/src/Command/InstallCommand.php +++ b/.vortex/cli/src/Command/InstallCommand.php @@ -2,30 +2,30 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Command; - -use DrevOps\VortexInstaller\Downloader\Artifact; -use DrevOps\VortexInstaller\Downloader\Downloader; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\InstallerPresenter; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Runner\CommandRunnerAwareInterface; -use DrevOps\VortexInstaller\Runner\CommandRunnerAwareTrait; -use DrevOps\VortexInstaller\Runner\ExecutableFinderAwareInterface; -use DrevOps\VortexInstaller\Runner\ExecutableFinderAwareTrait; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Schema\AgentHelp; -use DrevOps\VortexInstaller\Schema\SchemaGenerator; -use DrevOps\VortexInstaller\Schema\SchemaValidator; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\FileManager; -use DrevOps\VortexInstaller\Utils\OptionsResolver; -use DrevOps\VortexInstaller\Utils\Tui; -use DrevOps\VortexInstaller\Utils\Version; +namespace DrevOps\VortexCli\Command; + +use DrevOps\VortexCli\Downloader\Artifact; +use DrevOps\VortexCli\Downloader\Downloader; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\InstallerPresenter; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Runner\CommandRunnerAwareInterface; +use DrevOps\VortexCli\Runner\CommandRunnerAwareTrait; +use DrevOps\VortexCli\Runner\ExecutableFinderAwareInterface; +use DrevOps\VortexCli\Runner\ExecutableFinderAwareTrait; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Schema\AgentHelp; +use DrevOps\VortexCli\Schema\SchemaGenerator; +use DrevOps\VortexCli\Schema\SchemaValidator; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\FileManager; +use DrevOps\VortexCli\Utils\OptionsResolver; +use DrevOps\VortexCli\Utils\Tui; +use DrevOps\VortexCli\Utils\Version; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; @@ -36,7 +36,7 @@ * * Install command. * - * @package DrevOps\VortexInstaller\Command + * @package DrevOps\VortexCli\Command */ class InstallCommand extends Command implements CommandRunnerAwareInterface, ExecutableFinderAwareInterface { @@ -446,7 +446,7 @@ public function cleanup(): void { * Provides a default RepositoryDownloader instance or returns the injected * one. This allows tests to inject mocks via setRepositoryDownloader(). * - * @return \DrevOps\VortexInstaller\Downloader\RepositoryDownloader + * @return \DrevOps\VortexCli\Downloader\RepositoryDownloader * The repository downloader. */ protected function getRepositoryDownloader(): RepositoryDownloader { @@ -456,7 +456,7 @@ protected function getRepositoryDownloader(): RepositoryDownloader { /** * Set the repository downloader. * - * @param \DrevOps\VortexInstaller\Downloader\RepositoryDownloader $repositoryDownloader + * @param \DrevOps\VortexCli\Downloader\RepositoryDownloader $repositoryDownloader * The repository downloader. */ public function setRepositoryDownloader(RepositoryDownloader $repositoryDownloader): void { @@ -469,7 +469,7 @@ public function setRepositoryDownloader(RepositoryDownloader $repositoryDownload * Provides a default Downloader instance or returns the injected one. * This allows tests to inject mocks via setFileDownloader(). * - * @return \DrevOps\VortexInstaller\Downloader\Downloader + * @return \DrevOps\VortexCli\Downloader\Downloader * The file downloader. */ protected function getFileDownloader(): Downloader { @@ -479,7 +479,7 @@ protected function getFileDownloader(): Downloader { /** * Set the file downloader. * - * @param \DrevOps\VortexInstaller\Downloader\Downloader $fileDownloader + * @param \DrevOps\VortexCli\Downloader\Downloader $fileDownloader * The file downloader. */ public function setFileDownloader(Downloader $fileDownloader): void { diff --git a/.vortex/installer/src/Downloader/Archiver.php b/.vortex/cli/src/Downloader/Archiver.php similarity index 99% rename from .vortex/installer/src/Downloader/Archiver.php rename to .vortex/cli/src/Downloader/Archiver.php index 692851245c..c7987ca47e 100644 --- a/.vortex/installer/src/Downloader/Archiver.php +++ b/.vortex/cli/src/Downloader/Archiver.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; use AlexSkrypnyk\File\File; use PhpZip\ZipFile; diff --git a/.vortex/installer/src/Downloader/ArchiverInterface.php b/.vortex/cli/src/Downloader/ArchiverInterface.php similarity index 96% rename from .vortex/installer/src/Downloader/ArchiverInterface.php rename to .vortex/cli/src/Downloader/ArchiverInterface.php index edefe9517e..8bdd78ca39 100644 --- a/.vortex/installer/src/Downloader/ArchiverInterface.php +++ b/.vortex/cli/src/Downloader/ArchiverInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; /** * Interface for archive operations. diff --git a/.vortex/installer/src/Downloader/Artifact.php b/.vortex/cli/src/Downloader/Artifact.php similarity index 99% rename from .vortex/installer/src/Downloader/Artifact.php rename to .vortex/cli/src/Downloader/Artifact.php index 7f6821b6d1..407c06d810 100644 --- a/.vortex/installer/src/Downloader/Artifact.php +++ b/.vortex/cli/src/Downloader/Artifact.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Validator; /** * Represents a downloadable artifact (repository + reference). diff --git a/.vortex/installer/src/Downloader/Downloader.php b/.vortex/cli/src/Downloader/Downloader.php similarity index 96% rename from .vortex/installer/src/Downloader/Downloader.php rename to .vortex/cli/src/Downloader/Downloader.php index bdbb234024..d7f7946be6 100644 --- a/.vortex/installer/src/Downloader/Downloader.php +++ b/.vortex/cli/src/Downloader/Downloader.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; use GuzzleHttp\Client; use GuzzleHttp\ClientInterface; diff --git a/.vortex/installer/src/Downloader/RepositoryDownloader.php b/.vortex/cli/src/Downloader/RepositoryDownloader.php similarity index 96% rename from .vortex/installer/src/Downloader/RepositoryDownloader.php rename to .vortex/cli/src/Downloader/RepositoryDownloader.php index afcc07dc0d..3198dcbdc2 100644 --- a/.vortex/installer/src/Downloader/RepositoryDownloader.php +++ b/.vortex/cli/src/Downloader/RepositoryDownloader.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Git; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Git; use GuzzleHttp\Client; use GuzzleHttp\ClientInterface; use GuzzleHttp\Exception\RequestException; @@ -28,13 +28,13 @@ class RepositoryDownloader implements RepositoryDownloaderInterface { * @param \GuzzleHttp\ClientInterface|null $httpClient * Optional HTTP client for API calls (e.g., discovering releases). * If not provided, a default Guzzle client will be created. - * @param \DrevOps\VortexInstaller\Downloader\ArchiverInterface|null $archiver + * @param \DrevOps\VortexCli\Downloader\ArchiverInterface|null $archiver * Optional Archiver instance for testing. If not provided, a default * Archiver will be created. - * @param \DrevOps\VortexInstaller\Utils\Git|null $git + * @param \DrevOps\VortexCli\Utils\Git|null $git * Optional Git instance for testing. If not provided, will be created * when needed for local repository operations. - * @param \DrevOps\VortexInstaller\Downloader\Downloader|null $fileDownloader + * @param \DrevOps\VortexCli\Downloader\Downloader|null $fileDownloader * Optional Downloader instance for downloading archive files. * If not provided, a default Downloader will be created. */ @@ -64,7 +64,7 @@ public function download(Artifact $artifact, ?string $dst = NULL, ?string $relea /** * Validate repository and reference exist. * - * @param \DrevOps\VortexInstaller\Downloader\Artifact $artifact + * @param \DrevOps\VortexCli\Downloader\Artifact $artifact * The artifact to validate. * * @throws \RuntimeException diff --git a/.vortex/installer/src/Downloader/RepositoryDownloaderInterface.php b/.vortex/cli/src/Downloader/RepositoryDownloaderInterface.php similarity index 90% rename from .vortex/installer/src/Downloader/RepositoryDownloaderInterface.php rename to .vortex/cli/src/Downloader/RepositoryDownloaderInterface.php index 1d35425f10..c033c75483 100644 --- a/.vortex/installer/src/Downloader/RepositoryDownloaderInterface.php +++ b/.vortex/cli/src/Downloader/RepositoryDownloaderInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Downloader; +namespace DrevOps\VortexCli\Downloader; /** * Interface for downloading files from local or remote Git repositories. @@ -12,7 +12,7 @@ interface RepositoryDownloaderInterface { /** * Downloads a repository archive from a local or remote source. * - * @param \DrevOps\VortexInstaller\Downloader\Artifact $artifact + * @param \DrevOps\VortexCli\Downloader\Artifact $artifact * The artifact to download (contains repository and reference). * @param string|null $dst * The destination directory. If NULL, a temporary directory will be used diff --git a/.vortex/installer/src/Logger/FileLogger.php b/.vortex/cli/src/Logger/FileLogger.php similarity index 97% rename from .vortex/installer/src/Logger/FileLogger.php rename to .vortex/cli/src/Logger/FileLogger.php index a9c1f86685..cc8975c98f 100644 --- a/.vortex/installer/src/Logger/FileLogger.php +++ b/.vortex/cli/src/Logger/FileLogger.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Logger; +namespace DrevOps\VortexCli\Logger; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; /** * File-based logger for command execution. diff --git a/.vortex/installer/src/Logger/FileLoggerInterface.php b/.vortex/cli/src/Logger/FileLoggerInterface.php similarity index 94% rename from .vortex/installer/src/Logger/FileLoggerInterface.php rename to .vortex/cli/src/Logger/FileLoggerInterface.php index f8c2b6a8a3..b7bf34a31a 100644 --- a/.vortex/installer/src/Logger/FileLoggerInterface.php +++ b/.vortex/cli/src/Logger/FileLoggerInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Logger; +namespace DrevOps\VortexCli\Logger; /** * Interface for file-based command execution loggers. diff --git a/.vortex/installer/src/Logger/LoggableInterface.php b/.vortex/cli/src/Logger/LoggableInterface.php similarity index 83% rename from .vortex/installer/src/Logger/LoggableInterface.php rename to .vortex/cli/src/Logger/LoggableInterface.php index 1181b95bf8..e6e88f1c94 100644 --- a/.vortex/installer/src/Logger/LoggableInterface.php +++ b/.vortex/cli/src/Logger/LoggableInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Logger; +namespace DrevOps\VortexCli\Logger; /** * Interface for classes that support logging capability. @@ -28,7 +28,7 @@ public function disableLog(): static; /** * Get the logger instance. * - * @return \DrevOps\VortexInstaller\Logger\LoggerInterface + * @return \DrevOps\VortexCli\Logger\LoggerInterface * The logger instance. */ public function getLogger(): LoggerInterface; diff --git a/.vortex/installer/src/Logger/LoggerInterface.php b/.vortex/cli/src/Logger/LoggerInterface.php similarity index 96% rename from .vortex/installer/src/Logger/LoggerInterface.php rename to .vortex/cli/src/Logger/LoggerInterface.php index 1fdd722ce7..d26459d8dc 100644 --- a/.vortex/installer/src/Logger/LoggerInterface.php +++ b/.vortex/cli/src/Logger/LoggerInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Logger; +namespace DrevOps\VortexCli\Logger; /** * Generic interface for command execution loggers. diff --git a/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php b/.vortex/cli/src/Prompts/Handlers/AbstractHandler.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/AbstractHandler.php rename to .vortex/cli/src/Prompts/Handlers/AbstractHandler.php index d8c921b905..02f2b84e54 100644 --- a/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php +++ b/.vortex/cli/src/Prompts/Handlers/AbstractHandler.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Prompts\PromptType; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexCli\Prompts\PromptType; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Converter; abstract class AbstractHandler implements HandlerInterface { diff --git a/.vortex/installer/src/Prompts/Handlers/AiCodeInstructions.php b/.vortex/cli/src/Prompts/Handlers/AiCodeInstructions.php similarity index 92% rename from .vortex/installer/src/Prompts/Handlers/AiCodeInstructions.php rename to .vortex/cli/src/Prompts/Handlers/AiCodeInstructions.php index 90a61053a4..22e7bb155f 100644 --- a/.vortex/installer/src/Prompts/Handlers/AiCodeInstructions.php +++ b/.vortex/cli/src/Prompts/Handlers/AiCodeInstructions.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class AiCodeInstructions extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php b/.vortex/cli/src/Prompts/Handlers/AssignAuthorPr.php similarity index 90% rename from .vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php rename to .vortex/cli/src/Prompts/Handlers/AssignAuthorPr.php index 577d493705..730777d32e 100644 --- a/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php +++ b/.vortex/cli/src/Prompts/Handlers/AssignAuthorPr.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class AssignAuthorPr extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CiProvider.php b/.vortex/cli/src/Prompts/Handlers/CiProvider.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/CiProvider.php rename to .vortex/cli/src/Prompts/Handlers/CiProvider.php index 317e838bbe..c47aec88ef 100644 --- a/.vortex/installer/src/Prompts/Handlers/CiProvider.php +++ b/.vortex/cli/src/Prompts/Handlers/CiProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class CiProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CodeCoverageProvider.php b/.vortex/cli/src/Prompts/Handlers/CodeCoverageProvider.php similarity index 94% rename from .vortex/installer/src/Prompts/Handlers/CodeCoverageProvider.php rename to .vortex/cli/src/Prompts/Handlers/CodeCoverageProvider.php index 99e508c0c7..f438613e7f 100644 --- a/.vortex/installer/src/Prompts/Handlers/CodeCoverageProvider.php +++ b/.vortex/cli/src/Prompts/Handlers/CodeCoverageProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class CodeCoverageProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CodeProvider.php b/.vortex/cli/src/Prompts/Handlers/CodeProvider.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/CodeProvider.php rename to .vortex/cli/src/Prompts/Handlers/CodeProvider.php index 4129318363..8973f942cf 100644 --- a/.vortex/installer/src/Prompts/Handlers/CodeProvider.php +++ b/.vortex/cli/src/Prompts/Handlers/CodeProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class CodeProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CustomModules.php b/.vortex/cli/src/Prompts/Handlers/CustomModules.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/CustomModules.php rename to .vortex/cli/src/Prompts/Handlers/CustomModules.php index ed6feec559..fd68d27f92 100644 --- a/.vortex/installer/src/Prompts/Handlers/CustomModules.php +++ b/.vortex/cli/src/Prompts/Handlers/CustomModules.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Tui; class CustomModules extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DatabaseFetchSource.php b/.vortex/cli/src/Prompts/Handlers/DatabaseFetchSource.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/DatabaseFetchSource.php rename to .vortex/cli/src/Prompts/Handlers/DatabaseFetchSource.php index acc1efb3ce..51e8191572 100644 --- a/.vortex/installer/src/Prompts/Handlers/DatabaseFetchSource.php +++ b/.vortex/cli/src/Prompts/Handlers/DatabaseFetchSource.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class DatabaseFetchSource extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php b/.vortex/cli/src/Prompts/Handlers/DatabaseImage.php similarity index 93% rename from .vortex/installer/src/Prompts/Handlers/DatabaseImage.php rename to .vortex/cli/src/Prompts/Handlers/DatabaseImage.php index 80cb155946..fb85592d49 100644 --- a/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php +++ b/.vortex/cli/src/Prompts/Handlers/DatabaseImage.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\Validator; class DatabaseImage extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php b/.vortex/cli/src/Prompts/Handlers/DependencyUpdatesProvider.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php rename to .vortex/cli/src/Prompts/Handlers/DependencyUpdatesProvider.php index ef59736831..609bd7c8a6 100644 --- a/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php +++ b/.vortex/cli/src/Prompts/Handlers/DependencyUpdatesProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class DependencyUpdatesProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DeployTypes.php b/.vortex/cli/src/Prompts/Handlers/DeployTypes.php similarity index 93% rename from .vortex/installer/src/Prompts/Handlers/DeployTypes.php rename to .vortex/cli/src/Prompts/Handlers/DeployTypes.php index 746850ed07..d6ad4c105b 100644 --- a/.vortex/installer/src/Prompts/Handlers/DeployTypes.php +++ b/.vortex/cli/src/Prompts/Handlers/DeployTypes.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class DeployTypes extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Domain.php b/.vortex/cli/src/Prompts/Handlers/Domain.php similarity index 88% rename from .vortex/installer/src/Prompts/Handlers/Domain.php rename to .vortex/cli/src/Prompts/Handlers/Domain.php index 10f0390a0d..969be08bfb 100644 --- a/.vortex/installer/src/Prompts/Handlers/Domain.php +++ b/.vortex/cli/src/Prompts/Handlers/Domain.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Validator; class Domain extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Dotenv.php b/.vortex/cli/src/Prompts/Handlers/Dotenv.php similarity index 85% rename from .vortex/installer/src/Prompts/Handlers/Dotenv.php rename to .vortex/cli/src/Prompts/Handlers/Dotenv.php index f005db97fa..04bba597e5 100644 --- a/.vortex/installer/src/Prompts/Handlers/Dotenv.php +++ b/.vortex/cli/src/Prompts/Handlers/Dotenv.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexCli\Utils\Env; class Dotenv extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/FrontendBuild.php b/.vortex/cli/src/Prompts/Handlers/FrontendBuild.php similarity index 95% rename from .vortex/installer/src/Prompts/Handlers/FrontendBuild.php rename to .vortex/cli/src/Prompts/Handlers/FrontendBuild.php index 6b64f0474a..38417a02e7 100644 --- a/.vortex/installer/src/Prompts/Handlers/FrontendBuild.php +++ b/.vortex/cli/src/Prompts/Handlers/FrontendBuild.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexCli\Utils\Env; /** * Toggle building of front-end (theme) assets inside the container image. diff --git a/.vortex/installer/src/Prompts/Handlers/Gitleaks.php b/.vortex/cli/src/Prompts/Handlers/Gitleaks.php similarity index 92% rename from .vortex/installer/src/Prompts/Handlers/Gitleaks.php rename to .vortex/cli/src/Prompts/Handlers/Gitleaks.php index c0d110d4fa..d86812dda5 100644 --- a/.vortex/installer/src/Prompts/Handlers/Gitleaks.php +++ b/.vortex/cli/src/Prompts/Handlers/Gitleaks.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; /** * Scan for committed secrets with Gitleaks. diff --git a/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php b/.vortex/cli/src/Prompts/Handlers/HandlerInterface.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/HandlerInterface.php rename to .vortex/cli/src/Prompts/Handlers/HandlerInterface.php index da117fda67..39b104dfaf 100644 --- a/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php +++ b/.vortex/cli/src/Prompts/Handlers/HandlerInterface.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Prompts\PromptType; +use DrevOps\VortexCli\Prompts\PromptType; /** * Interface HandlerInterface. * * The interface for the prompt handlers. * - * @package DrevOps\VortexInstaller\Prompts\Handlers + * @package DrevOps\VortexCli\Prompts\Handlers */ interface HandlerInterface { @@ -41,7 +41,7 @@ public static function envName(): string; /** * Get the prompt type for this handler. * - * @return \DrevOps\VortexInstaller\Prompts\PromptType + * @return \DrevOps\VortexCli\Prompts\PromptType * The prompt type enum case. */ public function type(): PromptType; diff --git a/.vortex/installer/src/Prompts/Handlers/HostingProjectName.php b/.vortex/cli/src/Prompts/Handlers/HostingProjectName.php similarity index 94% rename from .vortex/installer/src/Prompts/Handlers/HostingProjectName.php rename to .vortex/cli/src/Prompts/Handlers/HostingProjectName.php index 0f0fa8eb11..5be2a7f624 100644 --- a/.vortex/installer/src/Prompts/Handlers/HostingProjectName.php +++ b/.vortex/cli/src/Prompts/Handlers/HostingProjectName.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class HostingProjectName extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/HostingProvider.php b/.vortex/cli/src/Prompts/Handlers/HostingProvider.php similarity index 95% rename from .vortex/installer/src/Prompts/Handlers/HostingProvider.php rename to .vortex/cli/src/Prompts/Handlers/HostingProvider.php index 1775ec4ceb..48c4a7d039 100644 --- a/.vortex/installer/src/Prompts/Handlers/HostingProvider.php +++ b/.vortex/cli/src/Prompts/Handlers/HostingProvider.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class HostingProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Internal.php b/.vortex/cli/src/Prompts/Handlers/Internal.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/Internal.php rename to .vortex/cli/src/Prompts/Handlers/Internal.php index 6f90db4108..15cfe9feaf 100644 --- a/.vortex/installer/src/Prompts/Handlers/Internal.php +++ b/.vortex/cli/src/Prompts/Handlers/Internal.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; use AlexSkrypnyk\File\ContentFile\ContentFile; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Strings; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Strings; +use DrevOps\VortexCli\Utils\Yaml; class Internal extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php b/.vortex/cli/src/Prompts/Handlers/LabelMergeConflictsPr.php similarity index 91% rename from .vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php rename to .vortex/cli/src/Prompts/Handlers/LabelMergeConflictsPr.php index 2e05f87203..e5f297dc29 100644 --- a/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php +++ b/.vortex/cli/src/Prompts/Handlers/LabelMergeConflictsPr.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class LabelMergeConflictsPr extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/MachineName.php b/.vortex/cli/src/Prompts/Handlers/MachineName.php similarity index 89% rename from .vortex/installer/src/Prompts/Handlers/MachineName.php rename to .vortex/cli/src/Prompts/Handlers/MachineName.php index 1aa612e645..eca985ac9f 100644 --- a/.vortex/installer/src/Prompts/Handlers/MachineName.php +++ b/.vortex/cli/src/Prompts/Handlers/MachineName.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class MachineName extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Migration.php b/.vortex/cli/src/Prompts/Handlers/Migration.php similarity index 89% rename from .vortex/installer/src/Prompts/Handlers/Migration.php rename to .vortex/cli/src/Prompts/Handlers/Migration.php index 86a4acdfb4..a952c834c8 100644 --- a/.vortex/installer/src/Prompts/Handlers/Migration.php +++ b/.vortex/cli/src/Prompts/Handlers/Migration.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Yaml; class Migration extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/MigrationFetchSource.php b/.vortex/cli/src/Prompts/Handlers/MigrationFetchSource.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/MigrationFetchSource.php rename to .vortex/cli/src/Prompts/Handlers/MigrationFetchSource.php index cd7b5e8688..38802c7d70 100644 --- a/.vortex/installer/src/Prompts/Handlers/MigrationFetchSource.php +++ b/.vortex/cli/src/Prompts/Handlers/MigrationFetchSource.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class MigrationFetchSource extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/MigrationImage.php b/.vortex/cli/src/Prompts/Handlers/MigrationImage.php similarity index 93% rename from .vortex/installer/src/Prompts/Handlers/MigrationImage.php rename to .vortex/cli/src/Prompts/Handlers/MigrationImage.php index 2624bdf343..4e58254fd0 100644 --- a/.vortex/installer/src/Prompts/Handlers/MigrationImage.php +++ b/.vortex/cli/src/Prompts/Handlers/MigrationImage.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\Validator; class MigrationImage extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php b/.vortex/cli/src/Prompts/Handlers/ModulePrefix.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/ModulePrefix.php rename to .vortex/cli/src/Prompts/Handlers/ModulePrefix.php index c9bb2a777a..cbbdf548b3 100644 --- a/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php +++ b/.vortex/cli/src/Prompts/Handlers/ModulePrefix.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\File; class ModulePrefix extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Modules.php b/.vortex/cli/src/Prompts/Handlers/Modules.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/Modules.php rename to .vortex/cli/src/Prompts/Handlers/Modules.php index 00bb590234..fa8d2d3045 100644 --- a/.vortex/installer/src/Prompts/Handlers/Modules.php +++ b/.vortex/cli/src/Prompts/Handlers/Modules.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; use AlexSkrypnyk\File\Replacer\Replacement; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class Modules extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Name.php b/.vortex/cli/src/Prompts/Handlers/Name.php similarity index 89% rename from .vortex/installer/src/Prompts/Handlers/Name.php rename to .vortex/cli/src/Prompts/Handlers/Name.php index 01f2950b2e..4e9d9c1735 100644 --- a/.vortex/installer/src/Prompts/Handlers/Name.php +++ b/.vortex/cli/src/Prompts/Handlers/Name.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class Name extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/NotificationChannels.php b/.vortex/cli/src/Prompts/Handlers/NotificationChannels.php similarity index 94% rename from .vortex/installer/src/Prompts/Handlers/NotificationChannels.php rename to .vortex/cli/src/Prompts/Handlers/NotificationChannels.php index f4c36577b1..53ba926abd 100644 --- a/.vortex/installer/src/Prompts/Handlers/NotificationChannels.php +++ b/.vortex/cli/src/Prompts/Handlers/NotificationChannels.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; /** * Handler for notification channels selection. diff --git a/.vortex/installer/src/Prompts/Handlers/Org.php b/.vortex/cli/src/Prompts/Handlers/Org.php similarity index 89% rename from .vortex/installer/src/Prompts/Handlers/Org.php rename to .vortex/cli/src/Prompts/Handlers/Org.php index 61312ff962..e0c890e8e3 100644 --- a/.vortex/installer/src/Prompts/Handlers/Org.php +++ b/.vortex/cli/src/Prompts/Handlers/Org.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class Org extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php b/.vortex/cli/src/Prompts/Handlers/OrgMachineName.php similarity index 90% rename from .vortex/installer/src/Prompts/Handlers/OrgMachineName.php rename to .vortex/cli/src/Prompts/Handlers/OrgMachineName.php index 5b41a2be6a..1f500ebf31 100644 --- a/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php +++ b/.vortex/cli/src/Prompts/Handlers/OrgMachineName.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; class OrgMachineName extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php b/.vortex/cli/src/Prompts/Handlers/PreserveDocsProject.php similarity index 91% rename from .vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php rename to .vortex/cli/src/Prompts/Handlers/PreserveDocsProject.php index 054584af8b..1eef107c2c 100644 --- a/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php +++ b/.vortex/cli/src/Prompts/Handlers/PreserveDocsProject.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; class PreserveDocsProject extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Profile.php b/.vortex/cli/src/Prompts/Handlers/Profile.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/Profile.php rename to .vortex/cli/src/Prompts/Handlers/Profile.php index c672bdd80e..df874bba5c 100644 --- a/.vortex/installer/src/Prompts/Handlers/Profile.php +++ b/.vortex/cli/src/Prompts/Handlers/Profile.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class Profile extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ProfileCustom.php b/.vortex/cli/src/Prompts/Handlers/ProfileCustom.php similarity index 95% rename from .vortex/installer/src/Prompts/Handlers/ProfileCustom.php rename to .vortex/cli/src/Prompts/Handlers/ProfileCustom.php index 63e52bc2cc..745e0a544e 100644 --- a/.vortex/installer/src/Prompts/Handlers/ProfileCustom.php +++ b/.vortex/cli/src/Prompts/Handlers/ProfileCustom.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexCli\Utils\Converter; class ProfileCustom extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ProvisionType.php b/.vortex/cli/src/Prompts/Handlers/ProvisionType.php similarity index 92% rename from .vortex/installer/src/Prompts/Handlers/ProvisionType.php rename to .vortex/cli/src/Prompts/Handlers/ProvisionType.php index 1fd24b94c8..9b3e349a09 100644 --- a/.vortex/installer/src/Prompts/Handlers/ProvisionType.php +++ b/.vortex/cli/src/Prompts/Handlers/ProvisionType.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Tui; class ProvisionType extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Services.php b/.vortex/cli/src/Prompts/Handlers/Services.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/Services.php rename to .vortex/cli/src/Prompts/Handlers/Services.php index 606590e540..257f03657f 100644 --- a/.vortex/installer/src/Prompts/Handlers/Services.php +++ b/.vortex/cli/src/Prompts/Handlers/Services.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Yaml; class Services extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Starter.php b/.vortex/cli/src/Prompts/Handlers/Starter.php similarity index 96% rename from .vortex/installer/src/Prompts/Handlers/Starter.php rename to .vortex/cli/src/Prompts/Handlers/Starter.php index ba4d695b93..222109c834 100644 --- a/.vortex/installer/src/Prompts/Handlers/Starter.php +++ b/.vortex/cli/src/Prompts/Handlers/Starter.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\JsonManipulator; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Tui; class Starter extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Theme.php b/.vortex/cli/src/Prompts/Handlers/Theme.php similarity index 97% rename from .vortex/installer/src/Prompts/Handlers/Theme.php rename to .vortex/cli/src/Prompts/Handlers/Theme.php index 0b2fd11605..9b410fe85c 100644 --- a/.vortex/installer/src/Prompts/Handlers/Theme.php +++ b/.vortex/cli/src/Prompts/Handlers/Theme.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class Theme extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ThemeCustom.php b/.vortex/cli/src/Prompts/Handlers/ThemeCustom.php similarity index 95% rename from .vortex/installer/src/Prompts/Handlers/ThemeCustom.php rename to .vortex/cli/src/Prompts/Handlers/ThemeCustom.php index aa53111480..9491d7d8af 100644 --- a/.vortex/installer/src/Prompts/Handlers/ThemeCustom.php +++ b/.vortex/cli/src/Prompts/Handlers/ThemeCustom.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexCli\Utils\Converter; class ThemeCustom extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Timezone.php b/.vortex/cli/src/Prompts/Handlers/Timezone.php similarity index 99% rename from .vortex/installer/src/Prompts/Handlers/Timezone.php rename to .vortex/cli/src/Prompts/Handlers/Timezone.php index 08e46c1c5c..597e41ccc8 100644 --- a/.vortex/installer/src/Prompts/Handlers/Timezone.php +++ b/.vortex/cli/src/Prompts/Handlers/Timezone.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; class Timezone extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Tools.php b/.vortex/cli/src/Prompts/Handlers/Tools.php similarity index 98% rename from .vortex/installer/src/Prompts/Handlers/Tools.php rename to .vortex/cli/src/Prompts/Handlers/Tools.php index 28805c893b..178f6c7ffd 100644 --- a/.vortex/installer/src/Prompts/Handlers/Tools.php +++ b/.vortex/cli/src/Prompts/Handlers/Tools.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; use AlexSkrypnyk\File\ContentFile\ContentFile; use AlexSkrypnyk\File\Replacer\Replacement; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; -use DrevOps\VortexInstaller\Utils\Strings; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Strings; +use DrevOps\VortexCli\Utils\Yaml; use function iter\flatten; class Tools extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/VersionScheme.php b/.vortex/cli/src/Prompts/Handlers/VersionScheme.php similarity index 93% rename from .vortex/installer/src/Prompts/Handlers/VersionScheme.php rename to .vortex/cli/src/Prompts/Handlers/VersionScheme.php index aff16020e6..d75ba87d0a 100644 --- a/.vortex/installer/src/Prompts/Handlers/VersionScheme.php +++ b/.vortex/cli/src/Prompts/Handlers/VersionScheme.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Tui; class VersionScheme extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/VisualRegression.php b/.vortex/cli/src/Prompts/Handlers/VisualRegression.php similarity index 95% rename from .vortex/installer/src/Prompts/Handlers/VisualRegression.php rename to .vortex/cli/src/Prompts/Handlers/VisualRegression.php index 9f3fb69d8d..d1ba84edb8 100644 --- a/.vortex/installer/src/Prompts/Handlers/VisualRegression.php +++ b/.vortex/cli/src/Prompts/Handlers/VisualRegression.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; /** * Enable Diffy visual regression testing. diff --git a/.vortex/installer/src/Prompts/Handlers/Webroot.php b/.vortex/cli/src/Prompts/Handlers/Webroot.php similarity index 93% rename from .vortex/installer/src/Prompts/Handlers/Webroot.php rename to .vortex/cli/src/Prompts/Handlers/Webroot.php index aa6c119f0a..05b39c1160 100644 --- a/.vortex/installer/src/Prompts/Handlers/Webroot.php +++ b/.vortex/cli/src/Prompts/Handlers/Webroot.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts\Handlers; +namespace DrevOps\VortexCli\Prompts\Handlers; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Validator; class Webroot extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/InstallerPresenter.php b/.vortex/cli/src/Prompts/InstallerPresenter.php similarity index 96% rename from .vortex/installer/src/Prompts/InstallerPresenter.php rename to .vortex/cli/src/Prompts/InstallerPresenter.php index 2e1a5221f0..8497d6c685 100644 --- a/.vortex/installer/src/Prompts/InstallerPresenter.php +++ b/.vortex/cli/src/Prompts/InstallerPresenter.php @@ -2,18 +2,18 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts; +namespace DrevOps\VortexCli\Prompts; -use DrevOps\VortexInstaller\Downloader\Artifact; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Strings; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Downloader\Artifact; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Strings; +use DrevOps\VortexCli\Utils\Tui; /** * Presents installer headers, footers, and post-build messages. * - * @package DrevOps\VortexInstaller\Prompts + * @package DrevOps\VortexCli\Prompts */ class InstallerPresenter { diff --git a/.vortex/installer/src/Prompts/PromptManager.php b/.vortex/cli/src/Prompts/PromptManager.php similarity index 88% rename from .vortex/installer/src/Prompts/PromptManager.php rename to .vortex/cli/src/Prompts/PromptManager.php index 5dc05d4ad1..d4fb055fbf 100644 --- a/.vortex/installer/src/Prompts/PromptManager.php +++ b/.vortex/cli/src/Prompts/PromptManager.php @@ -2,55 +2,55 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts; - -use DrevOps\VortexInstaller\Prompts\Handlers\AbstractHandler; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeCoverageProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CustomModules; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\Dotenv; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; -use DrevOps\VortexInstaller\Prompts\Handlers\Gitleaks; -use DrevOps\VortexInstaller\Prompts\Handlers\HandlerInterface; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Internal; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Modules; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\NotificationChannels; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\ProfileCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; -use DrevOps\VortexInstaller\Prompts\Handlers\Tools; -use DrevOps\VortexInstaller\Prompts\Handlers\VersionScheme; -use DrevOps\VortexInstaller\Prompts\Handlers\VisualRegression; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Schema\SchemaValidator; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Tui; +namespace DrevOps\VortexCli\Prompts; + +use DrevOps\VortexCli\Prompts\Handlers\AbstractHandler; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeCoverageProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Prompts\Handlers\CustomModules; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\Dotenv; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\Gitleaks; +use DrevOps\VortexCli\Prompts\Handlers\HandlerInterface; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Internal; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Modules; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\NotificationChannels; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\ProfileCustom; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Prompts\Handlers\Tools; +use DrevOps\VortexCli\Prompts\Handlers\VersionScheme; +use DrevOps\VortexCli\Prompts\Handlers\VisualRegression; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Schema\SchemaValidator; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\OutputInterface; use function Laravel\Prompts\confirm; use function Laravel\Prompts\form; @@ -61,7 +61,7 @@ * * Centralised place for providing prompts and their processing. * - * @package DrevOps\VortexInstaller + * @package DrevOps\VortexCli */ class PromptManager { @@ -87,7 +87,7 @@ class PromptManager { /** * Array of handlers. * - * @var array + * @var array */ protected array $handlers = []; @@ -103,7 +103,7 @@ class PromptManager { /** * PromptManager constructor. * - * @param \DrevOps\VortexInstaller\Utils\Config $config + * @param \DrevOps\VortexCli\Utils\Config $config * The installer config. */ public function __construct( @@ -542,7 +542,7 @@ public function getResponsesSummary(): array { /** * Get the initialized handlers. * - * @return array + * @return array * An associative array of handler instances keyed by handler ID. */ public function getHandlers(): array { @@ -586,7 +586,7 @@ protected function initHandlers(): void { $classes = []; foreach ($handler_files as $handler_file) { - $class = 'DrevOps\\VortexInstaller\\Prompts\\Handlers\\' . basename($handler_file, '.php'); + $class = 'DrevOps\\VortexCli\\Prompts\\Handlers\\' . basename($handler_file, '.php'); if (!class_exists($class) || !is_subclass_of($class, HandlerInterface::class) || $class === AbstractHandler::class) { continue; diff --git a/.vortex/installer/src/Prompts/PromptType.php b/.vortex/cli/src/Prompts/PromptType.php similarity index 87% rename from .vortex/installer/src/Prompts/PromptType.php rename to .vortex/cli/src/Prompts/PromptType.php index 262afcbbe9..d4766e362a 100644 --- a/.vortex/installer/src/Prompts/PromptType.php +++ b/.vortex/cli/src/Prompts/PromptType.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Prompts; +namespace DrevOps\VortexCli\Prompts; /** * Prompt input types covering all Laravel Prompts input types. * - * @package DrevOps\VortexInstaller\Prompts + * @package DrevOps\VortexCli\Prompts */ enum PromptType: string { diff --git a/.vortex/installer/src/Runner/AbstractRunner.php b/.vortex/cli/src/Runner/AbstractRunner.php similarity index 97% rename from .vortex/installer/src/Runner/AbstractRunner.php rename to .vortex/cli/src/Runner/AbstractRunner.php index 4c8d384d34..a9be1e3052 100644 --- a/.vortex/installer/src/Runner/AbstractRunner.php +++ b/.vortex/cli/src/Runner/AbstractRunner.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; -use DrevOps\VortexInstaller\Logger\FileLogger; -use DrevOps\VortexInstaller\Logger\FileLoggerInterface; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Logger\FileLogger; +use DrevOps\VortexCli\Logger\FileLoggerInterface; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\OutputInterface; /** @@ -67,7 +67,7 @@ public function getLogger(): FileLoggerInterface { * @param array $args * Positional arguments to include in the log filename. * - * @return \DrevOps\VortexInstaller\Logger\FileLoggerInterface + * @return \DrevOps\VortexCli\Logger\FileLoggerInterface * The initialized logger instance. */ protected function initLogger(string $command, array $args = []): FileLoggerInterface { diff --git a/.vortex/installer/src/Runner/CommandRunner.php b/.vortex/cli/src/Runner/CommandRunner.php similarity index 96% rename from .vortex/installer/src/Runner/CommandRunner.php rename to .vortex/cli/src/Runner/CommandRunner.php index 4d4055fba6..54eae428d3 100644 --- a/.vortex/installer/src/Runner/CommandRunner.php +++ b/.vortex/cli/src/Runner/CommandRunner.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; -use DrevOps\VortexInstaller\Logger\LoggerInterface; +use DrevOps\VortexCli\Logger\LoggerInterface; use Symfony\Component\Console\Application; use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Output\BufferedOutput; @@ -68,7 +68,7 @@ public function run(string $command, array $args = [], array $inputs = [], array * * @param \Symfony\Component\Console\Output\OutputInterface $output * The output interface to stream to. - * @param \DrevOps\VortexInstaller\Logger\LoggerInterface $logger + * @param \DrevOps\VortexCli\Logger\LoggerInterface $logger * The logger to write to. * * @return array{0: \Symfony\Component\Console\Output\OutputInterface, 1: \Symfony\Component\Console\Output\BufferedOutput} diff --git a/.vortex/installer/src/Runner/CommandRunnerAwareInterface.php b/.vortex/cli/src/Runner/CommandRunnerAwareInterface.php similarity index 71% rename from .vortex/installer/src/Runner/CommandRunnerAwareInterface.php rename to .vortex/cli/src/Runner/CommandRunnerAwareInterface.php index 589d40b2bb..5bb570b41f 100644 --- a/.vortex/installer/src/Runner/CommandRunnerAwareInterface.php +++ b/.vortex/cli/src/Runner/CommandRunnerAwareInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; /** * Interface for classes that use CommandRunner. @@ -12,7 +12,7 @@ interface CommandRunnerAwareInterface { /** * Get the command runner. * - * @return \DrevOps\VortexInstaller\Runner\CommandRunner + * @return \DrevOps\VortexCli\Runner\CommandRunner * The command runner instance. */ public function getCommandRunner(): CommandRunner; @@ -20,7 +20,7 @@ public function getCommandRunner(): CommandRunner; /** * Set the command runner. * - * @param \DrevOps\VortexInstaller\Runner\CommandRunner $runner + * @param \DrevOps\VortexCli\Runner\CommandRunner $runner * The command runner instance. */ public function setCommandRunner(CommandRunner $runner): void; diff --git a/.vortex/installer/src/Runner/CommandRunnerAwareTrait.php b/.vortex/cli/src/Runner/CommandRunnerAwareTrait.php similarity index 83% rename from .vortex/installer/src/Runner/CommandRunnerAwareTrait.php rename to .vortex/cli/src/Runner/CommandRunnerAwareTrait.php index ae78cff74a..50e2847521 100644 --- a/.vortex/installer/src/Runner/CommandRunnerAwareTrait.php +++ b/.vortex/cli/src/Runner/CommandRunnerAwareTrait.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; /** * Provides CommandRunner dependency injection. @@ -20,7 +20,7 @@ trait CommandRunnerAwareTrait { * Factory method that returns existing runner or creates new one. * Requires getApplication() method from Symfony Command class. * - * @return \DrevOps\VortexInstaller\Runner\CommandRunner + * @return \DrevOps\VortexCli\Runner\CommandRunner * The command runner instance. */ public function getCommandRunner(): CommandRunner { @@ -33,7 +33,7 @@ public function getCommandRunner(): CommandRunner { * * Allows dependency injection for testing. * - * @param \DrevOps\VortexInstaller\Runner\CommandRunner $runner + * @param \DrevOps\VortexCli\Runner\CommandRunner $runner * The command runner instance. */ public function setCommandRunner(CommandRunner $runner): void { diff --git a/.vortex/installer/src/Runner/ExecutableFinderAwareInterface.php b/.vortex/cli/src/Runner/ExecutableFinderAwareInterface.php similarity index 93% rename from .vortex/installer/src/Runner/ExecutableFinderAwareInterface.php rename to .vortex/cli/src/Runner/ExecutableFinderAwareInterface.php index fb6f1f5af9..e1fe16ee09 100644 --- a/.vortex/installer/src/Runner/ExecutableFinderAwareInterface.php +++ b/.vortex/cli/src/Runner/ExecutableFinderAwareInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; use Symfony\Component\Process\ExecutableFinder; diff --git a/.vortex/installer/src/Runner/ExecutableFinderAwareTrait.php b/.vortex/cli/src/Runner/ExecutableFinderAwareTrait.php similarity index 96% rename from .vortex/installer/src/Runner/ExecutableFinderAwareTrait.php rename to .vortex/cli/src/Runner/ExecutableFinderAwareTrait.php index a55be1cc22..9fd14bcdd0 100644 --- a/.vortex/installer/src/Runner/ExecutableFinderAwareTrait.php +++ b/.vortex/cli/src/Runner/ExecutableFinderAwareTrait.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; use Symfony\Component\Process\ExecutableFinder; diff --git a/.vortex/installer/src/Runner/ProcessRunner.php b/.vortex/cli/src/Runner/ProcessRunner.php similarity index 99% rename from .vortex/installer/src/Runner/ProcessRunner.php rename to .vortex/cli/src/Runner/ProcessRunner.php index 291bb0ec5d..c17500b86b 100644 --- a/.vortex/installer/src/Runner/ProcessRunner.php +++ b/.vortex/cli/src/Runner/ProcessRunner.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Process\Process; diff --git a/.vortex/installer/src/Runner/ProcessRunnerAwareInterface.php b/.vortex/cli/src/Runner/ProcessRunnerAwareInterface.php similarity index 71% rename from .vortex/installer/src/Runner/ProcessRunnerAwareInterface.php rename to .vortex/cli/src/Runner/ProcessRunnerAwareInterface.php index ea114b9650..ab3998715a 100644 --- a/.vortex/installer/src/Runner/ProcessRunnerAwareInterface.php +++ b/.vortex/cli/src/Runner/ProcessRunnerAwareInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; /** * Interface for classes that use ProcessRunner. @@ -12,7 +12,7 @@ interface ProcessRunnerAwareInterface { /** * Get the process runner. * - * @return \DrevOps\VortexInstaller\Runner\ProcessRunner + * @return \DrevOps\VortexCli\Runner\ProcessRunner * The process runner instance. */ public function getProcessRunner(): ProcessRunner; @@ -20,7 +20,7 @@ public function getProcessRunner(): ProcessRunner; /** * Set the process runner. * - * @param \DrevOps\VortexInstaller\Runner\ProcessRunner $runner + * @param \DrevOps\VortexCli\Runner\ProcessRunner $runner * The process runner instance. */ public function setProcessRunner(ProcessRunner $runner): void; diff --git a/.vortex/installer/src/Runner/ProcessRunnerAwareTrait.php b/.vortex/cli/src/Runner/ProcessRunnerAwareTrait.php similarity index 81% rename from .vortex/installer/src/Runner/ProcessRunnerAwareTrait.php rename to .vortex/cli/src/Runner/ProcessRunnerAwareTrait.php index 9987059ea8..f62c709399 100644 --- a/.vortex/installer/src/Runner/ProcessRunnerAwareTrait.php +++ b/.vortex/cli/src/Runner/ProcessRunnerAwareTrait.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; /** * Provides ProcessRunner dependency injection. @@ -19,7 +19,7 @@ trait ProcessRunnerAwareTrait { * * Factory method that returns existing runner or creates new one. * - * @return \DrevOps\VortexInstaller\Runner\ProcessRunner + * @return \DrevOps\VortexCli\Runner\ProcessRunner * The process runner instance. */ public function getProcessRunner(): ProcessRunner { @@ -31,7 +31,7 @@ public function getProcessRunner(): ProcessRunner { * * Allows dependency injection for testing. * - * @param \DrevOps\VortexInstaller\Runner\ProcessRunner $runner + * @param \DrevOps\VortexCli\Runner\ProcessRunner $runner * The process runner instance. */ public function setProcessRunner(ProcessRunner $runner): void { diff --git a/.vortex/installer/src/Runner/RunnerInterface.php b/.vortex/cli/src/Runner/RunnerInterface.php similarity index 95% rename from .vortex/installer/src/Runner/RunnerInterface.php rename to .vortex/cli/src/Runner/RunnerInterface.php index 2b30f68376..49be6b9488 100644 --- a/.vortex/installer/src/Runner/RunnerInterface.php +++ b/.vortex/cli/src/Runner/RunnerInterface.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Runner; +namespace DrevOps\VortexCli\Runner; -use DrevOps\VortexInstaller\Logger\LoggableInterface; +use DrevOps\VortexCli\Logger\LoggableInterface; use Symfony\Component\Console\Output\OutputInterface; /** diff --git a/.vortex/installer/src/Schema/AgentHelp.php b/.vortex/cli/src/Schema/AgentHelp.php similarity index 98% rename from .vortex/installer/src/Schema/AgentHelp.php rename to .vortex/cli/src/Schema/AgentHelp.php index cc2fa45045..f94d6837f2 100644 --- a/.vortex/installer/src/Schema/AgentHelp.php +++ b/.vortex/cli/src/Schema/AgentHelp.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Schema; +namespace DrevOps\VortexCli\Schema; /** * Renders AI agent instructions for the installer. * - * @package DrevOps\VortexInstaller\Schema + * @package DrevOps\VortexCli\Schema */ class AgentHelp { diff --git a/.vortex/installer/src/Schema/SchemaGenerator.php b/.vortex/cli/src/Schema/SchemaGenerator.php similarity index 81% rename from .vortex/installer/src/Schema/SchemaGenerator.php rename to .vortex/cli/src/Schema/SchemaGenerator.php index 2fddf40d80..2ee17575d1 100644 --- a/.vortex/installer/src/Schema/SchemaGenerator.php +++ b/.vortex/cli/src/Schema/SchemaGenerator.php @@ -2,23 +2,23 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Schema; +namespace DrevOps\VortexCli\Schema; -use DrevOps\VortexInstaller\Prompts\Handlers\Dotenv; -use DrevOps\VortexInstaller\Prompts\Handlers\Internal; -use DrevOps\VortexInstaller\Utils\Normalizer; +use DrevOps\VortexCli\Prompts\Handlers\Dotenv; +use DrevOps\VortexCli\Prompts\Handlers\Internal; +use DrevOps\VortexCli\Utils\Normalizer; /** * Generates a JSON schema of all installer prompts. * - * @package DrevOps\VortexInstaller\Schema + * @package DrevOps\VortexCli\Schema */ class SchemaGenerator { /** * Constructor. * - * @param array $handlers + * @param array $handlers * An associative array of handler instances keyed by handler ID. */ public function __construct( diff --git a/.vortex/installer/src/Schema/SchemaValidator.php b/.vortex/cli/src/Schema/SchemaValidator.php similarity index 94% rename from .vortex/installer/src/Schema/SchemaValidator.php rename to .vortex/cli/src/Schema/SchemaValidator.php index 19f3c058ba..5ad946088b 100644 --- a/.vortex/installer/src/Schema/SchemaValidator.php +++ b/.vortex/cli/src/Schema/SchemaValidator.php @@ -2,22 +2,22 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Schema; +namespace DrevOps\VortexCli\Schema; -use DrevOps\VortexInstaller\Prompts\Handlers\HandlerInterface; -use DrevOps\VortexInstaller\Prompts\PromptType; +use DrevOps\VortexCli\Prompts\Handlers\HandlerInterface; +use DrevOps\VortexCli\Prompts\PromptType; /** * Validates prompt values against handler definitions. * - * @package DrevOps\VortexInstaller\Schema + * @package DrevOps\VortexCli\Schema */ class SchemaValidator { /** * Constructor. * - * @param array $handlers + * @param array $handlers * An associative array of handler instances keyed by handler ID. */ public function __construct( @@ -173,7 +173,7 @@ protected function checkDependency(array $depends_on, array $config): bool|strin /** * Validate a value against handler type constraints. * - * @param \DrevOps\VortexInstaller\Prompts\Handlers\HandlerInterface $handler + * @param \DrevOps\VortexCli\Prompts\Handlers\HandlerInterface $handler * The handler. * @param mixed $value * The value to validate. diff --git a/.vortex/installer/src/Task/Task.php b/.vortex/cli/src/Task/Task.php similarity index 96% rename from .vortex/installer/src/Task/Task.php rename to .vortex/cli/src/Task/Task.php index 6d09c317aa..27bbc7324a 100644 --- a/.vortex/installer/src/Task/Task.php +++ b/.vortex/cli/src/Task/Task.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Task; +namespace DrevOps\VortexCli\Task; -use DrevOps\VortexInstaller\Utils\Strings; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Strings; +use DrevOps\VortexCli\Utils\Tui; use function Laravel\Prompts\spin; class Task { diff --git a/.vortex/installer/src/Task/TaskOutput.php b/.vortex/cli/src/Task/TaskOutput.php similarity index 97% rename from .vortex/installer/src/Task/TaskOutput.php rename to .vortex/cli/src/Task/TaskOutput.php index 66018136b7..556096cc7c 100644 --- a/.vortex/installer/src/Task/TaskOutput.php +++ b/.vortex/cli/src/Task/TaskOutput.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Task; +namespace DrevOps\VortexCli\Task; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Formatter\OutputFormatterInterface; use Symfony\Component\Console\Output\OutputInterface; diff --git a/.vortex/installer/src/Utils/Config.php b/.vortex/cli/src/Utils/Config.php similarity index 97% rename from .vortex/installer/src/Utils/Config.php rename to .vortex/cli/src/Utils/Config.php index 84c6ba1fa9..ba401294df 100644 --- a/.vortex/installer/src/Utils/Config.php +++ b/.vortex/cli/src/Utils/Config.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; /** * Installer configuration. * * Installer config is a config of this installer script. * - * @package DrevOps\VortexInstaller + * @package DrevOps\VortexCli */ final class Config { diff --git a/.vortex/installer/src/Utils/Converter.php b/.vortex/cli/src/Utils/Converter.php similarity index 87% rename from .vortex/installer/src/Utils/Converter.php rename to .vortex/cli/src/Utils/Converter.php index fc8c06abce..7113684b4b 100644 --- a/.vortex/installer/src/Utils/Converter.php +++ b/.vortex/cli/src/Utils/Converter.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use AlexSkrypnyk\Str2Name\Str2Name; diff --git a/.vortex/installer/src/Utils/Env.php b/.vortex/cli/src/Utils/Env.php similarity index 99% rename from .vortex/installer/src/Utils/Env.php rename to .vortex/cli/src/Utils/Env.php index 030f9ab650..758a23f589 100644 --- a/.vortex/installer/src/Utils/Env.php +++ b/.vortex/cli/src/Utils/Env.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; class Env { diff --git a/.vortex/installer/src/Utils/File.php b/.vortex/cli/src/Utils/File.php similarity index 98% rename from .vortex/installer/src/Utils/File.php rename to .vortex/cli/src/Utils/File.php index 127686f6a1..9352dcccd5 100644 --- a/.vortex/installer/src/Utils/File.php +++ b/.vortex/cli/src/Utils/File.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use AlexSkrypnyk\File\ContentFile\ContentFile; use AlexSkrypnyk\File\File as UpstreamFile; diff --git a/.vortex/installer/src/Utils/FileManager.php b/.vortex/cli/src/Utils/FileManager.php similarity index 95% rename from .vortex/installer/src/Utils/FileManager.php rename to .vortex/cli/src/Utils/FileManager.php index 4d91028eb1..3238007d1b 100644 --- a/.vortex/installer/src/Utils/FileManager.php +++ b/.vortex/cli/src/Utils/FileManager.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; -use DrevOps\VortexInstaller\Downloader\Downloader; +use DrevOps\VortexCli\Downloader\Downloader; /** * File operations for the installation process. * - * @package DrevOps\VortexInstaller\Utils + * @package DrevOps\VortexCli\Utils */ class FileManager { @@ -119,7 +119,7 @@ public function removeObsoletePaths(): void { /** * Prepare demo content if in demo mode. * - * @param \DrevOps\VortexInstaller\Downloader\Downloader $downloader + * @param \DrevOps\VortexCli\Downloader\Downloader $downloader * The file downloader. * * @return array|string diff --git a/.vortex/installer/src/Utils/Git.php b/.vortex/cli/src/Utils/Git.php similarity index 98% rename from .vortex/installer/src/Utils/Git.php rename to .vortex/cli/src/Utils/Git.php index 844f874fe4..0d2cfe72f4 100644 --- a/.vortex/installer/src/Utils/Git.php +++ b/.vortex/cli/src/Utils/Git.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use CzProject\GitPhp\Git as GitWrapper; use CzProject\GitPhp\GitRepository; diff --git a/.vortex/installer/src/Utils/JsonManipulator.php b/.vortex/cli/src/Utils/JsonManipulator.php similarity index 97% rename from .vortex/installer/src/Utils/JsonManipulator.php rename to .vortex/cli/src/Utils/JsonManipulator.php index 1f15b09332..4220e84bf1 100644 --- a/.vortex/installer/src/Utils/JsonManipulator.php +++ b/.vortex/cli/src/Utils/JsonManipulator.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use Composer\Json\JsonFile; use Composer\Json\JsonManipulator as ComposerJsonManipulator; diff --git a/.vortex/installer/src/Utils/Normalizer.php b/.vortex/cli/src/Utils/Normalizer.php similarity index 92% rename from .vortex/installer/src/Utils/Normalizer.php rename to .vortex/cli/src/Utils/Normalizer.php index ec251a5f89..456056f408 100644 --- a/.vortex/installer/src/Utils/Normalizer.php +++ b/.vortex/cli/src/Utils/Normalizer.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; /** * Installer configuration. * * Installer config is a config of this installer script. * - * @package DrevOps\VortexInstaller + * @package DrevOps\VortexCli */ final class Normalizer { diff --git a/.vortex/installer/src/Utils/OptionsResolver.php b/.vortex/cli/src/Utils/OptionsResolver.php similarity index 97% rename from .vortex/installer/src/Utils/OptionsResolver.php rename to .vortex/cli/src/Utils/OptionsResolver.php index 7995f52626..04b92b3ba9 100644 --- a/.vortex/installer/src/Utils/OptionsResolver.php +++ b/.vortex/cli/src/Utils/OptionsResolver.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; -use DrevOps\VortexInstaller\Downloader\Artifact; +use DrevOps\VortexCli\Downloader\Artifact; use Symfony\Component\Process\ExecutableFinder; /** * Resolves CLI options and environment variables into Config and Artifact. * - * @package DrevOps\VortexInstaller\Utils + * @package DrevOps\VortexCli\Utils */ class OptionsResolver { diff --git a/.vortex/installer/src/Utils/Strings.php b/.vortex/cli/src/Utils/Strings.php similarity index 99% rename from .vortex/installer/src/Utils/Strings.php rename to .vortex/cli/src/Utils/Strings.php index 3eac4f1da0..979bf59b25 100644 --- a/.vortex/installer/src/Utils/Strings.php +++ b/.vortex/cli/src/Utils/Strings.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; class Strings { diff --git a/.vortex/installer/src/Utils/Tui.php b/.vortex/cli/src/Utils/Tui.php similarity index 99% rename from .vortex/installer/src/Utils/Tui.php rename to .vortex/cli/src/Utils/Tui.php index e978938a6c..d96e36bd57 100644 --- a/.vortex/installer/src/Utils/Tui.php +++ b/.vortex/cli/src/Utils/Tui.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use Laravel\Prompts\Prompt; use Laravel\Prompts\Terminal; diff --git a/.vortex/installer/src/Utils/Validator.php b/.vortex/cli/src/Utils/Validator.php similarity index 97% rename from .vortex/installer/src/Utils/Validator.php rename to .vortex/cli/src/Utils/Validator.php index 90a5adf199..1cc49102b7 100644 --- a/.vortex/installer/src/Utils/Validator.php +++ b/.vortex/cli/src/Utils/Validator.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; /** * Converter. * * Convert strings to different formats. * - * @package DrevOps\VortexInstaller + * @package DrevOps\VortexCli */ class Validator { diff --git a/.vortex/installer/src/Utils/Version.php b/.vortex/cli/src/Utils/Version.php similarity index 98% rename from .vortex/installer/src/Utils/Version.php rename to .vortex/cli/src/Utils/Version.php index 60be5ca28c..e6603f8c68 100644 --- a/.vortex/installer/src/Utils/Version.php +++ b/.vortex/cli/src/Utils/Version.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; /** * Helpers for reasoning about Vortex major versions. diff --git a/.vortex/installer/src/Utils/Yaml.php b/.vortex/cli/src/Utils/Yaml.php similarity index 98% rename from .vortex/installer/src/Utils/Yaml.php rename to .vortex/cli/src/Utils/Yaml.php index a00616aa3c..bb3cf39da9 100644 --- a/.vortex/installer/src/Utils/Yaml.php +++ b/.vortex/cli/src/Utils/Yaml.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Utils; +namespace DrevOps\VortexCli\Utils; use Symfony\Component\Yaml\Yaml as SymfonyYaml; diff --git a/.vortex/installer/tests/Fixtures/.editorconfig b/.vortex/cli/tests/Fixtures/.editorconfig similarity index 100% rename from .vortex/installer/tests/Fixtures/.editorconfig rename to .vortex/cli/tests/Fixtures/.editorconfig diff --git a/.vortex/installer/tests/Fixtures/.gitignore b/.vortex/cli/tests/Fixtures/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/.gitignore rename to .vortex/cli/tests/Fixtures/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.ahoy.local.example.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.ahoy.local.example.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.ahoy.local.example.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.ahoy.local.example.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.claude/settings.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.claude/settings.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.claude/settings.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.claude/settings.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.dclintrc b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.dclintrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.dclintrc rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.dclintrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/clamav.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/clamav.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/clamav.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/clamav.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/clamav/clamav.conf b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/clamav/clamav.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/clamav/clamav.conf rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/clamav/clamav.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/database/my.cnf b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/database/my.cnf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/database/my.cnf rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/database/my.cnf diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/nginx/redirects-map.conf b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/nginx/redirects-map.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/nginx/redirects-map.conf rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/nginx/redirects-map.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_da.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_de.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_el.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_en.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_es.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_et.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_id.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_it.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_th.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_und.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/accents_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/elevate.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/elevate.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/elevate.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/elevate.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_da.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_de.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_el.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_es.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_et.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_it.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_th.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/nouns_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/protwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_fields.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_fields.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_fields.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_fields.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_types.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_types.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_types.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/schema_extra_types.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_extra.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_extra.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_extra.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_extra.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_index.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_index.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_index.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_index.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_query.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_query.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_query.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_query.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_requestdispatcher.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_requestdispatcher.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_requestdispatcher.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrconfig_requestdispatcher.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrcore.properties b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrcore.properties similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrcore.properties rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/solrcore.properties diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stoptags_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stoptags_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stoptags_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stoptags_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ko.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ko.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ko.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ko.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/stopwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_da.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_de.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_el.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_en.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_es.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_et.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_id.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_it.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_th.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_und.txt b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/config/solr/config-set/synonyms_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/database.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/database.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/database.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/database.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/nginx-drupal.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/nginx-drupal.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/nginx-drupal.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/nginx-drupal.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/php.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/php.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/php.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/php.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/scripts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/scripts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/scripts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/scripts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/scripts/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/scripts/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/scripts/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/scripts/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/solr.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/solr.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/solr.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.docker/solr.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.editorconfig b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.editorconfig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.editorconfig rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.editorconfig diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.env b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.env rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/PULL_REQUEST_TEMPLATE.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/PULL_REQUEST_TEMPLATE.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/PULL_REQUEST_TEMPLATE.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/release-drafter.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/release-drafter.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/release-drafter.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/release-drafter.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/assign-author.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/assign-author.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/assign-author.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/assign-author.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/draft-release-notes.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/draft-release-notes.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/draft-release-notes.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/draft-release-notes.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/label-merge-conflict.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/label-merge-conflict.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.github/workflows/label-merge-conflict.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.github/workflows/label-merge-conflict.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.gitleaks.toml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.gitleaks.toml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.gitleaks.toml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.gitleaks.toml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/CLAUDE.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/CLAUDE.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/CLAUDE.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/CLAUDE.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/behat.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/composer.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/ci/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/ci/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/ci/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/ci/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/ci/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/ci/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/ci/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/ci/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/default/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/default/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/default/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/default/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/default/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/default/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/default/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/default/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/dev/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/dev/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/dev/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/dev/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/dev/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/dev/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/dev/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/dev/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/local/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/local/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/local/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/local/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/local/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/local/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/local/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/local/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/stage/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/stage/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/stage/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/stage/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/config/stage/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/_baseline/config/stage/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/config/stage/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/config/stage/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/faqs.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/faqs.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/faqs.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/faqs.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/releasing.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/releasing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/releasing.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/releasing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/drush/drush.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/drush/drush.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/drush/drush.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/drush/drush.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/drush/php-ini/drush.ini b/.vortex/cli/tests/Fixtures/handler_process/_baseline/drush/php-ini/drush.ini similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/drush/php-ini/drush.ini rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/drush/php-ini/drush.ini diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/package.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/package.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/_baseline/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_form_display.node.page.default.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_form_display.node.page.default.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_form_display.node.page.default.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_form_display.node.page.default.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.default.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.default.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.default.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.default.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.teaser.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.teaser.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.teaser.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/core.entity_view_display.node.page.teaser.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.field.node.page.body.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.field.node.page.body.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.field.node.page.body.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.field.node.page.body.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.storage.node.body.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.storage.node.body.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.storage.node.body.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/field.storage.node.body.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/node.type.page.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/node.type.page.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/config/node.type.page.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/config/node.type.page.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/recipe.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/recipe.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/recipes/page/recipe.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/recipes/page/recipe.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/rector.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/renovate.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/renovate.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/renovate.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/renovate.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/sanitize.sql b/.vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/sanitize.sql similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/sanitize.sql rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/sanitize.sql diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/vortex-tooling.sh b/.vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/vortex-tooling.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/vortex-tooling.sh rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/scripts/vortex-tooling.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/bootstrap/FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/bootstrap/FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/bootstrap/FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/bootstrap/FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/behat.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/counter.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/login.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/login.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/pages.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/redis.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/search.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/search.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/behat/features/xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/behat/features/xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/tests/phpunit/bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/tests/phpunit/bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/autoload.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/autoload.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/autoload.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/autoload.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/autoload_runtime.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/autoload_runtime.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/autoload_runtime.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/autoload_runtime.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/index.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/index.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/index.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/index.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/css/sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/css/sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/css/sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/css/sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/tests/sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/tests/sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/tests/sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/js/tests/sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/config/install/views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/modules/custom/sw_search/sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/default.services.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/default.services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/default.services.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/default.services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/example.services.local.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/example.services.local.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/example.services.local.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/example.services.local.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/example.settings.local.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/example.settings.local.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/example.settings.local.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/example.settings.local.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.automated_cron.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.automated_cron.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.automated_cron.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.automated_cron.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.system.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.system.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.system.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.system.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.trusted_hosts.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.trusted_hosts.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.trusted_hosts.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.trusted_hosts.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/includes/modules/settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/services.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/services.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.npmrc b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/README.md b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/README.md rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.css b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.css rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.twig b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.twig rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/components/button/button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/fonts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/fonts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/fonts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/fonts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/images/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/images/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/images/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/images/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/js/star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/js/star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/js/star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/js/star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/logo.svg b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/package.json b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/package.json rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_components.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/components/_header.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/components/_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/components/_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/components/_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/styles.scss b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/scss/styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/_baseline/web/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/-AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/-AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/-AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/-AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/-CLAUDE.md b/.vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/-CLAUDE.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/-CLAUDE.md rename to .vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/-CLAUDE.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.claude/-settings.json b/.vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.claude/-settings.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.claude/-settings.json rename to .vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.claude/-settings.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ai_instructions_disabled/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/ai_instructions_disabled/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/assign_author_pr_disabled/.github/workflows/-assign-author.yml b/.vortex/cli/tests/Fixtures/handler_process/assign_author_pr_disabled/.github/workflows/-assign-author.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/assign_author_pr_disabled/.github/workflows/-assign-author.yml rename to .vortex/cli/tests/Fixtures/handler_process/assign_author_pr_disabled/.github/workflows/-assign-author.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/assign_author_pr_enabled/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/assign_author_pr_enabled/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/assign_author_pr_enabled/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/assign_author_pr_enabled/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/ciprovider_gha/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/ciprovider_gha/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/ciprovider_gha/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/ciprovider_gha/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov/README.md b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov/README.md rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/code_coverage_provider_codecov_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_github/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/code_provider_github/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_github/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_github/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/-PULL_REQUEST_TEMPLATE.md b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/-PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/-PULL_REQUEST_TEMPLATE.md rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/-PULL_REQUEST_TEMPLATE.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/-release-drafter.yml b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/-release-drafter.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/-release-drafter.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/-release-drafter.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-assign-author.yml b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-assign-author.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-assign-author.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-assign-author.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-draft-release-notes.yml b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-draft-release-notes.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-draft-release-notes.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-draft-release-notes.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-label-merge-conflict.yml b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-label-merge-conflict.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-label-merge-conflict.yml rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/.github/workflows/-label-merge-conflict.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/code_provider_other/renovate.json b/.vortex/cli/tests/Fixtures/handler_process/code_provider_other/renovate.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/code_provider_other/renovate.json rename to .vortex/cli/tests/Fixtures/handler_process/code_provider_other/renovate.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/-sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_base/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/-sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/css/-sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/css/-sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/css/-sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/css/-sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/-sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/-sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/-sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/-sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_demo/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_no_search/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/-sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/-sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/css/-sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/css/-sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/css/-sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/css/-sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/-sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/-sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/-sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/-sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/-solr.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/-solr.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/-solr.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/-solr.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_da.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_de.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_el.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_en.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_es.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_et.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_id.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_it.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_th.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_und.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-accents_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-elevate.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-elevate.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-elevate.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-elevate.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_da.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_de.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_el.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_es.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_et.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_it.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_th.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-nouns_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-protwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_fields.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_fields.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_fields.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_fields.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_types.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_types.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_types.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-schema_extra_types.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_extra.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_extra.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_extra.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_extra.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_index.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_index.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_index.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_index.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_query.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_query.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_query.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_query.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrcore.properties b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrcore.properties similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrcore.properties rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-solrcore.properties diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stoptags_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stoptags_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stoptags_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stoptags_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ko.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ko.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ko.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ko.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-stopwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_da.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_de.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_el.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_en.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_es.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_et.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_id.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_it.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_th.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_und.txt b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.docker/config/solr/config-set/-synonyms_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.env b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/.env rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/composer.json b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/sites/default/includes/modules/-settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/sites/default/includes/modules/-settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/sites/default/includes/modules/-settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/custom_modules_search_without_solr/web/sites/default/includes/modules/-settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.env b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.env rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_acquia/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_acquia/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_container_registry/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_container_registry/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_ftp/.env b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_ftp/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_ftp/.env rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_ftp/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_ftp/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_ftp/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_ftp/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_ftp/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_s3/.env b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_s3/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_s3/.env rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_s3/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/db_fetch_source_s3/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/db_fetch_source_s3/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/db_fetch_source_s3/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/db_fetch_source_s3/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.gitignore.artifact b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.gitignore.artifact similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.gitignore.artifact rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/.gitignore.artifact diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.gitignore.artifact b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.gitignore.artifact similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_all_gha/.gitignore.artifact rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_all_gha/.gitignore.artifact diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.gitignore.artifact b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.gitignore.artifact similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_artifact/.gitignore.artifact rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_artifact/.gitignore.artifact diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_container_image/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_container_image/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_container_image/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_container_image/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/-deployment.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/-deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/-deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/-deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.env b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.env rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/docs/-deployment.md b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/docs/-deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_none_gha/docs/-deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_none_gha/docs/-deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deploy_types_webhook/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/deploy_types_webhook/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deploy_types_webhook/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/deploy_types_webhook/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/update-dependencies.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/update-dependencies.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/update-dependencies.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/update-dependencies.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/update-dependencies.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/update-dependencies.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/update-dependencies.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.github/workflows/update-dependencies.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.github/workflows/update-dependencies.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.github/workflows/update-dependencies.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.github/workflows/update-dependencies.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.github/workflows/update-dependencies.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_ci_gha/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/-renovate.json b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/-renovate.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/-renovate.json rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/-renovate.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/.github/workflows/update-dependencies.yml b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/.github/workflows/update-dependencies.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/.github/workflows/update-dependencies.yml rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/.github/workflows/update-dependencies.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/README.md b/.vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_none/README.md rename to .vortex/cli/tests/Fixtures/handler_process/deps_updates_provider_none/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/frontend_build_skip/.env b/.vortex/cli/tests/Fixtures/handler_process/frontend_build_skip/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/frontend_build_skip/.env rename to .vortex/cli/tests/Fixtures/handler_process/frontend_build_skip/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/gitleaks_disabled/-.gitleaks.toml b/.vortex/cli/tests/Fixtures/handler_process/gitleaks_disabled/-.gitleaks.toml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/gitleaks_disabled/-.gitleaks.toml rename to .vortex/cli/tests/Fixtures/handler_process/gitleaks_disabled/-.gitleaks.toml diff --git a/.vortex/installer/tests/Fixtures/handler_process/gitleaks_disabled/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/gitleaks_disabled/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/gitleaks_disabled/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/gitleaks_disabled/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.docker/nginx-drupal.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.docker/nginx-drupal.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.docker/nginx-drupal.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.docker/nginx-drupal.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.env b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.env rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitignore.artifact b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitignore.artifact similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitignore.artifact rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitignore.artifact diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitleaks.toml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitleaks.toml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.gitleaks.toml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.gitleaks.toml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/behat.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/composer.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload_runtime.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload_runtime.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload_runtime.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/autoload_runtime.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/index.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/index.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/index.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/index.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/css/sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/css/sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/css/sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/css/sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/modules/custom/sw_search/sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.services.local.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.services.local.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.services.local.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.services.local.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.settings.local.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.settings.local.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.settings.local.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/example.settings.local.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.automated_cron.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.automated_cron.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.automated_cron.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.automated_cron.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.system.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.system.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.system.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.system.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.npmrc b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/components/button/button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/fonts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/fonts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/fonts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/fonts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/images/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/images/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/images/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/images/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/js/star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/js/star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/js/star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/js/star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/logo.svg b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_components.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/components/_header.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/components/_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/components/_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/components/_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/styles.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/scss/styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/README.txt b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/README.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/README.txt rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/README.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-deploy b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-deploy similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-deploy rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-deploy diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/1.provision.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/1.provision.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/1.provision.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/1.provision.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/2.purge-cache.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/2.purge-cache.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/2.purge-cache.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/2.purge-cache.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/3.notify-deployment.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/3.notify-deployment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/3.notify-deployment.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-code-update/3.notify-deployment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-db-copy b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-db-copy similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-db-copy rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/common/post-db-copy diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-db.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-db.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-db.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-db.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-files.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-files.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-files.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/copy-files.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/domains.txt b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/domains.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/domains.txt rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/domains.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/notify-deployment.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/notify-deployment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/notify-deployment.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/notify-deployment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/provision.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/provision.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/provision.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/provision.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/purge-cache.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/purge-cache.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/library/purge-cache.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/library/purge-cache.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-deploy/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-deploy/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-deploy/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-deploy/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-update b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-update similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-update rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/hooks/prod/post-code-update diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/rector.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/tests/phpunit/bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-autoload.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-autoload.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-autoload.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-autoload.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-autoload_runtime.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-autoload_runtime.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-autoload_runtime.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-autoload_runtime.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-index.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-index.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/-index.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/-index.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/-sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/-sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/css/-sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/css/-sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/css/-sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/css/-sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/-sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/-sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/-sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/-sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.services.local.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.services.local.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.services.local.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.services.local.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.settings.local.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.settings.local.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.settings.local.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-example.settings.local.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/-settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.automated_cron.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.automated_cron.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.automated_cron.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.automated_cron.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.system.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.system.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.system.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.system.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/close-pull-request.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/close-pull-request.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/close-pull-request.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.github/workflows/close-pull-request.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.lagoon.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.lagoon.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/.lagoon.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/.lagoon.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/drush/sites/lagoon.site.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/drush/sites/lagoon.site.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/drush/sites/lagoon.site.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/drush/sites/lagoon.site.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/nginx-drupal.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/nginx-drupal.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/nginx-drupal.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.docker/nginx-drupal.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.env b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.env rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore.artifact b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore.artifact similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore.artifact rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitignore.artifact diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitleaks.toml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitleaks.toml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitleaks.toml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.gitleaks.toml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/behat.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/composer.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/.htaccess b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/.htaccess similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/.htaccess rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/.htaccess diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload_runtime.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload_runtime.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload_runtime.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/autoload_runtime.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/index.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/index.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/index.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/index.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Functional/SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/FunctionalJavascript/SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Kernel/SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Traits/ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_base/tests/src/Unit/SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/config/install/views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/css/sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/css/sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/css/sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/css/sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/js/tests/sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/templates/sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/FunctionalJavascript/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Kernel/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_demo/tests/src/Unit/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/config/install/views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/src/Plugin/DeployStep/RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/modules/custom/sw_search/sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.services.local.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.services.local.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.services.local.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.services.local.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.settings.local.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.settings.local.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.settings.local.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/example.settings.local.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.automated_cron.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.automated_cron.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.automated_cron.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.automated_cron.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.system.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.system.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.system.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.system.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.trusted_hosts.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/includes/modules/settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.npmrc b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/components/button/button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/fonts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/fonts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/fonts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/fonts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/images/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/images/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/images/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/images/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/js/star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/js/star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/js/star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/js/star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/logo.svg b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_components.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/components/_header.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/components/_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/components/_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/components/_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/styles.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/scss/styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/templates/layout/region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Functional/StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/FunctionalJavascript/StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Kernel/StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docroot/themes/custom/star_wars/tests/src/Unit/StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/README.txt b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/README.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/README.txt rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/README.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-deploy b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-deploy similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-deploy rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-deploy diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/1.provision.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/1.provision.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/1.provision.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/1.provision.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/2.purge-cache.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/2.purge-cache.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/2.purge-cache.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/2.purge-cache.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/3.notify-deployment.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/3.notify-deployment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/3.notify-deployment.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-code-update/3.notify-deployment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-db-copy b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-db-copy similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-db-copy rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/common/post-db-copy diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-db.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-db.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-db.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-db.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-files.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-files.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-files.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/copy-files.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/domains.txt b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/domains.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/domains.txt rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/domains.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/notify-deployment.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/notify-deployment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/notify-deployment.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/notify-deployment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/provision.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/provision.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/provision.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/provision.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/purge-cache.sh b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/purge-cache.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/purge-cache.sh rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/library/purge-cache.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-deploy/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-deploy/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-deploy/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-deploy/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-update b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-update similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-update rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/hooks/prod/post-code-update diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/rector.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/tests/phpunit/bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload_runtime.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload_runtime.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload_runtime.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-autoload_runtime.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-index.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-index.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-index.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/-index.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/-sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/-sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/css/-sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/css/-sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/css/-sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/css/-sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/-sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/-sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/-sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/-sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.services.local.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.services.local.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.services.local.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.services.local.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.settings.local.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.settings.local.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.settings.local.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-example.settings.local.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-services.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-services.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-services.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-services.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-settings.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-settings.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/-settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.automated_cron.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.automated_cron.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.automated_cron.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.automated_cron.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.system.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.system.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.system.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.system.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.trusted_hosts.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/sites/default/includes/modules/-settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___acquia/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/close-pull-request.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/close-pull-request.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/close-pull-request.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.github/workflows/close-pull-request.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.lagoon.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.lagoon.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/.lagoon.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/.lagoon.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/README.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/README.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/drush/sites/lagoon.site.yml b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/drush/sites/lagoon.site.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/drush/sites/lagoon.site.yml rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/drush/sites/lagoon.site.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/hosting_project_name___lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/hosting_project_name___lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/label_merge_conflicts_pr_disabled/.github/workflows/-label-merge-conflict.yml b/.vortex/cli/tests/Fixtures/handler_process/label_merge_conflicts_pr_disabled/.github/workflows/-label-merge-conflict.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/label_merge_conflicts_pr_disabled/.github/workflows/-label-merge-conflict.yml rename to .vortex/cli/tests/Fixtures/handler_process/label_merge_conflicts_pr_disabled/.github/workflows/-label-merge-conflict.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/label_merge_conflicts_pr_enabled/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/label_merge_conflicts_pr_enabled/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/label_merge_conflicts_pr_enabled/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/label_merge_conflicts_pr_enabled/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/close-pull-request.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/close-pull-request.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/close-pull-request.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.github/workflows/close-pull-request.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.lagoon.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.lagoon.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/.lagoon.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/.lagoon.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/README.md b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/README.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/drush/sites/lagoon.site.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/drush/sites/lagoon.site.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/drush/sites/lagoon.site.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/drush/sites/lagoon.site.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_disabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_disabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_circleci/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/close-pull-request.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/close-pull-request.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/close-pull-request.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.github/workflows/close-pull-request.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.lagoon.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.lagoon.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.lagoon.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/.lagoon.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/README.md b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/README.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/drush/sites/lagoon.site.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/drush/sites/lagoon.site.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/drush/sites/lagoon.site.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/drush/sites/lagoon.site.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_enabled_lagoon/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_acquia/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_container_registry/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_ftp/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_lagoon/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_s3/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.env b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.env rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/composer.json b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/migrations/ys_migrate_categories.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/src/Plugin/DeployStep/MigrateContentDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/ys_migrate.info.yml b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/ys_migrate.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/ys_migrate.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/modules/custom/ys_migrate/ys_migrate.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.migration.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.migration.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.migration.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.migration.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/migration_fetch_source_url/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_admin_toolbar/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_admin_toolbar/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_admin_toolbar/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_admin_toolbar/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_admin_toolbar/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_admin_toolbar/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_admin_toolbar/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_admin_toolbar/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_coffee/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_coffee/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_coffee/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_coffee/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_coffee/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_coffee/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_coffee/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_coffee/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/web/sites/default/includes/modules/-settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/web/sites/default/includes/modules/-settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_split/web/sites/default/includes/modules/-settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_split/web/sites/default/includes/modules/-settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_update/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_update/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_update/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_update/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_config_update/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_config_update/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_config_update/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_config_update/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_devel/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_devel/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_devel/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_devel/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_devel/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_devel/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_devel/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_devel/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_devel/web/sites/default/includes/modules/-settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_devel/web/sites/default/includes/modules/-settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_devel/web/sites/default/includes/modules/-settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_devel/web/sites/default/includes/modules/-settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_drupal_helpers/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_drupal_helpers/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_drupal_helpers/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_drupal_helpers/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/web/sites/default/includes/modules/-settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/web/sites/default/includes/modules/-settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_environment_indicator/web/sites/default/includes/modules/-settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_environment_indicator/web/sites/default/includes/modules/-settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/web/sites/default/includes/modules/-settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/web/sites/default/includes/modules/-settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_generated_content/web/sites/default/includes/modules/-settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_generated_content/web/sites/default/includes/modules/-settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_navigation_extra_tools/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_pathauto/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_pathauto/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_pathauto/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_pathauto/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_pathauto/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_pathauto/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_pathauto/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_pathauto/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_redirect/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_redirect/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_redirect/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_redirect/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_redirect/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_redirect/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_redirect/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_redirect/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/web/sites/default/includes/modules/-settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/web/sites/default/includes/modules/-settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_reroute_email/web/sites/default/includes/modules/-settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_reroute_email/web/sites/default/includes/modules/-settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/web/sites/default/includes/modules/-settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/web/sites/default/includes/modules/-settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_robotstxt/web/sites/default/includes/modules/-settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_robotstxt/web/sites/default/includes/modules/-settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_sdc_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_sdc_devel/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/web/sites/default/includes/modules/-settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/web/sites/default/includes/modules/-settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit/web/sites/default/includes/modules/-settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit/web/sites/default/includes/modules/-settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/.env b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/.env rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_seckit_shield_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/.env b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/.env rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_shield/web/sites/default/includes/modules/-settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_shield/web/sites/default/includes/modules/-settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_shield/web/sites/default/includes/modules/-settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_shield/web/sites/default/includes/modules/-settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/.env b/.vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/.env rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_stage_file_proxy/web/sites/default/includes/modules/-settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/web/sites/default/includes/modules/-settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/web/sites/default/includes/modules/-settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_testmode/web/sites/default/includes/modules/-settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_testmode/web/sites/default/includes/modules/-settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/sites/default/includes/modules/-settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/sites/default/includes/modules/-settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/sites/default/includes/modules/-settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_no_xmlsitemap/web/sites/default/includes/modules/-settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_none/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/.env b/.vortex/cli/tests/Fixtures/handler_process/modules_none/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/.env rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_none/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/composer.json b/.vortex/cli/tests/Fixtures/handler_process/modules_none/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/modules_none/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/modules_none/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/modules_none/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.config_split.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.config_split.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.config_split.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.config_split.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.devel.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.devel.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.devel.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.devel.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.environment_indicator.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.environment_indicator.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.environment_indicator.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.environment_indicator.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.generated_content.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.generated_content.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.generated_content.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.generated_content.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.robotstxt.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.robotstxt.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.robotstxt.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.robotstxt.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.seckit.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.seckit.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.seckit.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.seckit.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.shield.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.shield.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.shield.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.shield.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.stage_file_proxy.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.stage_file_proxy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.stage_file_proxy.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.stage_file_proxy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.testmode.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.testmode.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.testmode.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.testmode.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.xmlsitemap.php b/.vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.xmlsitemap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.xmlsitemap.php rename to .vortex/cli/tests/Fixtures/handler_process/modules_none/web/sites/default/includes/modules/-settings.xmlsitemap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/names/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/names/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/.docker/config/nginx/redirects-map.conf b/.vortex/cli/tests/Fixtures/handler_process/names/.docker/config/nginx/redirects-map.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/.docker/config/nginx/redirects-map.conf rename to .vortex/cli/tests/Fixtures/handler_process/names/.docker/config/nginx/redirects-map.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/.env b/.vortex/cli/tests/Fixtures/handler_process/names/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/.env rename to .vortex/cli/tests/Fixtures/handler_process/names/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/names/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/names/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/README.md b/.vortex/cli/tests/Fixtures/handler_process/names/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/README.md rename to .vortex/cli/tests/Fixtures/handler_process/names/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/composer.json b/.vortex/cli/tests/Fixtures/handler_process/names/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/names/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/names/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/names/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/package.json b/.vortex/cli/tests/Fixtures/handler_process/names/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/package.json rename to .vortex/cli/tests/Fixtures/handler_process/names/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/tests/behat/features/counter.feature b/.vortex/cli/tests/Fixtures/handler_process/names/tests/behat/features/counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/tests/behat/features/counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/names/tests/behat/features/counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.module b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.module rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/-sw_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/src/Plugin/DeployStep/-EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/-sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/config/install/-views.view.sw_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/css/-sw_demo.css b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/css/-sw_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/css/-sw_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/css/-sw_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/-sw_demo.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/-sw_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/-sw_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/-sw_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/js/tests/-sw_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/Block/-CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/src/Plugin/GeneratedContent/Node/-Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/templates/-sw-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/CreateContentModelDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/TheForceBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/TheForceBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/TheForceBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Functional/TheForceBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/TheForceBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/TheForceBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/TheForceBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/FunctionalJavascript/TheForceBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/TheForceBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/TheForceBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/TheForceBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Kernel/TheForceBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Traits/ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/TheForceBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/TheForceBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/TheForceBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/tests/src/Unit/TheForceBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.module b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.module rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_base/the_force_base.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/config/install/views.view.the_force_demo_pages.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/config/install/views.view.the_force_demo_pages.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/config/install/views.view.the_force_demo_pages.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/config/install/views.view.the_force_demo_pages.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/css/the_force_demo.css b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/css/the_force_demo.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/css/the_force_demo.css rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/css/the_force_demo.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/tests/the_force_demo.test.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/tests/the_force_demo.test.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/tests/the_force_demo.test.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/tests/the_force_demo.test.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/the_force_demo.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/the_force_demo.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/the_force_demo.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/js/the_force_demo.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/GeneratedContent/Node/Page.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/GeneratedContent/Node/Page.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/GeneratedContent/Node/Page.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/src/Plugin/GeneratedContent/Node/Page.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/templates/the-force-demo-counter-block.html.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/templates/the-force-demo-counter-block.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/templates/the-force-demo-counter-block.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/templates/the-force-demo-counter-block.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/FunctionalJavascript/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/FunctionalJavascript/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/FunctionalJavascript/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/FunctionalJavascript/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Kernel/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Kernel/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Kernel/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Kernel/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Unit/CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Unit/CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Unit/CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/tests/src/Unit/CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.module b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_demo/the_force_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/config/install/views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/src/Plugin/DeployStep/RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/src/Plugin/DeployStep/RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/src/Plugin/DeployStep/RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/src/Plugin/DeployStep/RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.install b/.vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.install rename to .vortex/cli/tests/Fixtures/handler_process/names/web/modules/custom/the_force_search/the_force_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/-settings.sw_base.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/-settings.sw_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/-settings.sw_base.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/-settings.sw_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.reroute_email.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.reroute_email.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.reroute_email.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.reroute_email.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.the_force_base.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.the_force_base.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.the_force_base.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/sites/default/includes/modules/settings.the_force_base.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.npmrc b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/README.md b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/README.md rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.css b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.css rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/components/button/button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/fonts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/fonts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/fonts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/fonts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/images/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/images/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/images/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/images/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/js/lightsaber.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/js/lightsaber.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/js/lightsaber.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/js/lightsaber.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.theme b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.theme rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/lightsaber.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/logo.svg b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/package.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/package.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_components.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/components/_header.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/components/_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/components/_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/components/_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/styles.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/scss/styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/templates/layout/region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/templates/layout/region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/templates/layout/region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/templates/layout/region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/LightsaberFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/LightsaberFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/LightsaberFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Functional/LightsaberFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/LightsaberFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/LightsaberFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/LightsaberFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/FunctionalJavascript/LightsaberFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/LightsaberKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/LightsaberKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/LightsaberKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Kernel/LightsaberKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/LightsaberUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/LightsaberUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/LightsaberUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/lightsaber/tests/src/Unit/LightsaberUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/names/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/non_interactive/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/.env b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/.env rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/README.md b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/README.md rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/composer.json b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/package.json b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/package.json rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/web/sites/default/includes/modules/-settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/web/sites/default/includes/modules/-settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_file/web/sites/default/includes/modules/-settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_file/web/sites/default/includes/modules/-settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.docker/-clamav.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.docker/-clamav.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.docker/-clamav.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.docker/-clamav.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.docker/config/clamav/-clamav.conf b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.docker/config/clamav/-clamav.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.docker/config/clamav/-clamav.conf rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.docker/config/clamav/-clamav.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.env b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/.env rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/README.md b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/README.md rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/composer.json b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/package.json b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/package.json rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/web/sites/default/includes/modules/-settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/web/sites/default/includes/modules/-settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/non_interactive_config_string/web/sites/default/includes/modules/-settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/non_interactive_config_string/web/sites/default/includes/modules/-settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_all/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_all/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_all/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_all/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_email_only/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_email_only/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_email_only/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_email_only/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_github_only/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_github_only/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_github_only/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_github_only/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_jira_only/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_jira_only/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_jira_only/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_jira_only/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_newrelic_only/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_newrelic_only/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_newrelic_only/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_newrelic_only/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_none/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_none/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_none/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_none/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_slack_only/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_slack_only/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_slack_only/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_slack_only/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/notification_channels_webhook_only/.env b/.vortex/cli/tests/Fixtures/handler_process/notification_channels_webhook_only/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/notification_channels_webhook_only/.env rename to .vortex/cli/tests/Fixtures/handler_process/notification_channels_webhook_only/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-README.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-ci.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-ci.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-deployment.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-faqs.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-faqs.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-faqs.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-faqs.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-releasing.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-releasing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-releasing.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-releasing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-testing.md b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-testing.md rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_disabled/docs/-testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_enabled/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_enabled/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/preserve_docs_project_enabled/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/preserve_docs_project_enabled/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/profile_minimal/.env b/.vortex/cli/tests/Fixtures/handler_process/profile_minimal/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/profile_minimal/.env rename to .vortex/cli/tests/Fixtures/handler_process/profile_minimal/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/profile_the_empire/.env b/.vortex/cli/tests/Fixtures/handler_process/profile_the_empire/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/profile_the_empire/.env rename to .vortex/cli/tests/Fixtures/handler_process/profile_the_empire/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/profile_the_empire/web/profiles/custom/the_empire/the_empire.info.yml b/.vortex/cli/tests/Fixtures/handler_process/profile_the_empire/web/profiles/custom/the_empire/the_empire.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/profile_the_empire/web/profiles/custom/the_empire/the_empire.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/profile_the_empire/web/profiles/custom/the_empire/the_empire.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/provision_database/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/provision_database/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.env b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.env rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/close-pull-request.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/close-pull-request.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/close-pull-request.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.github/workflows/close-pull-request.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.lagoon.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.lagoon.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/.lagoon.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/.lagoon.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/README.md b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/README.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/composer.json b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/docs/deployment.md b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/docs/deployment.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/docs/deployment.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/docs/deployment.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/drush/sites/lagoon.site.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/drush/sites/lagoon.site.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/drush/sites/lagoon.site.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/drush/sites/lagoon.site.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_database_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/provision_database_lagoon/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/.env b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/.env rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/README.md b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/README.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile/scripts/-sanitize.sql b/.vortex/cli/tests/Fixtures/handler_process/provision_profile/scripts/-sanitize.sql similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile/scripts/-sanitize.sql rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile/scripts/-sanitize.sql diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.env.local.example b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.env.local.example similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.env.local.example rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.env.local.example diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/scripts/-sanitize.sql b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/scripts/-sanitize.sql similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/scripts/-sanitize.sql rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/scripts/-sanitize.sql diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/provision_profile_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.docker/-clamav.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.docker/-clamav.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.docker/-clamav.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.docker/-clamav.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.docker/config/clamav/-clamav.conf b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.docker/config/clamav/-clamav.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.docker/config/clamav/-clamav.conf rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.docker/config/clamav/-clamav.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.env b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/.env rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/composer.json b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_clamav/web/sites/default/includes/modules/-settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_clamav/web/sites/default/includes/modules/-settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_clamav/web/sites/default/includes/modules/-settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_clamav/web/sites/default/includes/modules/-settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/.env b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/.env rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/composer.json b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_redis/web/sites/default/includes/modules/-settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_redis/web/sites/default/includes/modules/-settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_redis/web/sites/default/includes/modules/-settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_redis/web/sites/default/includes/modules/-settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/-solr.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/-solr.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/-solr.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/-solr.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-accents_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-elevate.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-elevate.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-elevate.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-elevate.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-nouns_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-protwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_fields.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_fields.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_fields.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_fields.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_types.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_types.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_types.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-schema_extra_types.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_extra.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_extra.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_extra.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_extra.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_index.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_index.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_index.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_index.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_query.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_query.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_query.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_query.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrcore.properties b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrcore.properties similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrcore.properties rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-solrcore.properties diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stoptags_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stoptags_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stoptags_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stoptags_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ko.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ko.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ko.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ko.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-stopwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.docker/config/solr/config-set/-synonyms_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/.env b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/.env rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/composer.json b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/sites/default/includes/modules/-settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/sites/default/includes/modules/-settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_no_solr/web/sites/default/includes/modules/-settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/services_no_solr/web/sites/default/includes/modules/-settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/-clamav.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/-clamav.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/-clamav.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/-clamav.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/-solr.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/-solr.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/-solr.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/-solr.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/clamav/-clamav.conf b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/clamav/-clamav.conf similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/clamav/-clamav.conf rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/clamav/-clamav.conf diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-accents_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-elevate.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-elevate.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-elevate.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-elevate.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-nouns_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-protwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_fields.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_fields.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_fields.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_fields.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_types.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_types.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_types.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-schema_extra_types.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_extra.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_extra.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_extra.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_extra.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_index.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_index.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_index.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_index.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_query.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_query.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_query.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_query.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrconfig_requestdispatcher.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrcore.properties b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrcore.properties similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrcore.properties rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-solrcore.properties diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stoptags_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stoptags_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stoptags_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stoptags_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ja.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ja.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ja.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ja.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ko.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ko.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ko.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ko.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-stopwords_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ar.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ar.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ar.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ar.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_bg.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_bg.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_bg.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_bg.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ca.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ca.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ca.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ca.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cs.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cs.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cs.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cs.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cy.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cy.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cy.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_cy.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_da.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_da.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_da.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_da.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_de.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_de.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_de.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_de.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_el.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_el.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_el.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_el.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_en.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_en.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_en.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_en.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_es.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_es.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_es.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_es.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_et.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_et.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_et.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_et.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fa.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fa.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fa.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fa.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_fr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ga.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ga.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ga.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ga.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hi.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hi.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hi.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hi.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hu.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hu.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hu.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_hu.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_id.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_id.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_id.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_id.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_it.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_it.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_it.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_it.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_lv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_lv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_lv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_lv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nb.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nb.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nb.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nb.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nn.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nn.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nn.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_nn.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pl.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pl.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pl.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pl.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_br.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_br.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_br.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_br.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_pt.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_pt.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_pt.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_pt_pt.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ro.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ro.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ro.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ro.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ru.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ru.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ru.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_ru.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sv.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sv.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sv.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_sv.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_th.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_th.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_th.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_th.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_tr.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_tr.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_tr.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_tr.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_uk.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_uk.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_uk.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_uk.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_und.txt b/.vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_und.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_und.txt rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.docker/config/solr/config-set/-synonyms_und.txt diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/.env b/.vortex/cli/tests/Fixtures/handler_process/services_none/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/.env rename to .vortex/cli/tests/Fixtures/handler_process/services_none/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/composer.json b/.vortex/cli/tests/Fixtures/handler_process/services_none/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/services_none/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/docker-compose.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/docker-compose.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/docker-compose.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/docker-compose.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/services_none/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/tests/phpunit/Drupal/SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_base/src/Plugin/DeployStep/EnableDevelopmentModulesDeployStep.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.info.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.install b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.install similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.install rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/-sw_search.install diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.index.content.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-search_api.server.solr.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-views.view.search.yml b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-views.view.search.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-views.view.search.yml rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/config/install/-views.view.search.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/modules/custom/sw_search/src/Plugin/DeployStep/-RebuildSearchIndex.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.clamav.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.clamav.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.clamav.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.clamav.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.search_api.php b/.vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.search_api.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.search_api.php rename to .vortex/cli/tests/Fixtures/handler_process/services_none/web/sites/default/includes/modules/-settings.search_api.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/starter_demo_db/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/starter_demo_db/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/starter_demo_db/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/starter_demo_db/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/starter_drupal_cms_profile/.env b/.vortex/cli/tests/Fixtures/handler_process/starter_drupal_cms_profile/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/starter_drupal_cms_profile/.env rename to .vortex/cli/tests/Fixtures/handler_process/starter_drupal_cms_profile/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/starter_drupal_cms_profile/composer.json b/.vortex/cli/tests/Fixtures/handler_process/starter_drupal_cms_profile/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/starter_drupal_cms_profile/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/starter_drupal_cms_profile/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/starter_drupal_profile/.env b/.vortex/cli/tests/Fixtures/handler_process/starter_drupal_profile/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/starter_drupal_profile/.env rename to .vortex/cli/tests/Fixtures/handler_process/starter_drupal_profile/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.env b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/.env rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/rector.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_claro/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/.env b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/.env rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/components/button/button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/fonts/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/fonts/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/fonts/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/fonts/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/images/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/images/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/images/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/images/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/js/light_saber.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/js/light_saber.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/js/light_saber.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/js/light_saber.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/light_saber.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/patches/.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/patches/.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/patches/.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/patches/.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/components/_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/components/_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/components/_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/components/_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/scss/styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/templates/layout/region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/templates/layout/region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/templates/layout/region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/templates/layout/region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/LightSaberFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/LightSaberFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/LightSaberFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Functional/LightSaberFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/LightSaberFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/LightSaberFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/LightSaberFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/FunctionalJavascript/LightSaberFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/LightSaberKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/LightSaberKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/LightSaberKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Kernel/LightSaberKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/LightSaberUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/LightSaberUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/LightSaberUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/light_saber/tests/src/Unit/LightSaberUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/.env b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/.env rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/styles.css b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/styles.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/styles.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/styles.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_custom_non_vortex/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.env b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/.env rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/rector.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_olivero/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.env b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/.env rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/rector.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/theme_stark/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/renovate.json b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/renovate.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/renovate.json rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/renovate.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/timezone_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_gha/.env b/.vortex/cli/tests/Fixtures/handler_process/timezone_gha/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_gha/.env rename to .vortex/cli/tests/Fixtures/handler_process/timezone_gha/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/timezone_gha/renovate.json b/.vortex/cli/tests/Fixtures/handler_process/timezone_gha/renovate.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/timezone_gha/renovate.json rename to .vortex/cli/tests/Fixtures/handler_process/timezone_gha/renovate.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/-rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/-rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/-rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_lint_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-behat.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/-phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/-phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/bootstrap/-FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/bootstrap/-FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/bootstrap/-FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/bootstrap/-FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-behat.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-login.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-login.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/-bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/-bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/-bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/-bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/tests/phpunit/Drupal/-SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-behat.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/-phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/bootstrap/-FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/bootstrap/-FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/bootstrap/-FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/bootstrap/-FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-behat.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-login.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-login.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/-bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/-bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/-bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/-bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_be_tests_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.env b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.env rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.env b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.env rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/-behat.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/-behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/-behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/-behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/-gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/-gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/-gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/-gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/bootstrap/-FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/bootstrap/-FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/bootstrap/-FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/bootstrap/-FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-behat.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-login.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-login.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/-behat.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/-behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/-behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/-behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/-gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/-gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/-gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/-gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/bootstrap/-FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/bootstrap/-FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/bootstrap/-FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/bootstrap/-FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-behat.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-login.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-login.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_behat_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.env b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.env rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_eslint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_jest_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/-phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/-phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/-phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/-phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/-phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/-phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/-phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/-phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/tests/phpunit/Drupal/SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpcs_circleci/web/themes/custom/star_wars/tests/src/Functional/ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/-phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/-phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/-phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/-phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/-phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/-phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/-phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/-phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpstan_circleci/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/-phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/-phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/-phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/-phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/-bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/-bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/-bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/-bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/tests/phpunit/Drupal/-SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/-phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/-phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/-phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/-phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/-bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/-bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/-bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/-bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/tests/phpunit/Drupal/-SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_phpunit_circleci/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector/-rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector/-rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector/-rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector/-rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/-rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/-rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/-rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/-rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_rector_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.env b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.env rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/modules/custom/sw_base/sw_base.deploy.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.npmrc b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.npmrc similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.npmrc rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.npmrc diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-.stylelintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-logo.svg b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-logo.svg similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-logo.svg rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-logo.svg diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-postcss.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-postcss.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-postcss.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-postcss.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.info.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.libraries.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.theme b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.theme similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.theme rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/-star_wars.theme diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.component.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.css b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.css similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.css rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.css diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/components/button/-button.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/fonts/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/images/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/images/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/images/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/images/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/js/-star_wars.js b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/js/-star_wars.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/js/-star_wars.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/js/-star_wars.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/patches/-.gitkeep diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_components.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_components.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_components.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_components.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_fonts.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_mixins.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_rem.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-_variables.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-styles.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-styles.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-styles.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/-styles.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/scss/components/-_header.scss diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/templates/layout/-region--footer-bottom.html.twig diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/-.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/-.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/-.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/-.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/-.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/-.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/-.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/-.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/config.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/config.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/config.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/config.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/post-coverage-comment.sh b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/post-coverage-comment.sh similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/post-coverage-comment.sh rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.circleci/post-coverage-comment.sh diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.github/workflows/-build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.github/workflows/-build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.github/workflows/-build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.github/workflows/-build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/README.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/README.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/README.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/README.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/docs/ci.md b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/docs/ci.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/docs/ci.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/docs/ci.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/CircleCiConfigTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/CircleCiConfigTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/CircleCiConfigTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/CircleCiConfigTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_no_twig_circleci/tests/phpunit/Drupal/EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.eslintignore b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.eslintignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.eslintignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.eslintignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.eslintrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.eslintrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.eslintrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.eslintrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.prettierignore b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.prettierignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.prettierignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.prettierignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.prettierrc.json b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.prettierrc.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.prettierrc.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.prettierrc.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.stylelintrc.js b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.stylelintrc.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.stylelintrc.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.stylelintrc.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-.twig-cs-fixer.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-.twig-cs-fixer.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-.twig-cs-fixer.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-.twig-cs-fixer.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-behat.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-behat.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-behat.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-behat.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-gherkinlint.json b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-gherkinlint.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-gherkinlint.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-gherkinlint.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-jest.config.js b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-jest.config.js similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-jest.config.js rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-jest.config.js diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-package.json b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-package.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-package.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-package.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-phpcs.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-phpcs.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-phpcs.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-phpcs.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-phpstan.neon b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-phpstan.neon similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-phpstan.neon rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-phpstan.neon diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-phpunit.xml b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-phpunit.xml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-phpunit.xml rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-phpunit.xml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/-rector.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/-rector.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/-rector.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/-rector.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/.ahoy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_none/.ahoy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/.ahoy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/.ahoy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/.dockerignore b/.vortex/cli/tests/Fixtures/handler_process/tools_none/.dockerignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/.dockerignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/.dockerignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/.github/workflows/build-test-deploy.yml b/.vortex/cli/tests/Fixtures/handler_process/tools_none/.github/workflows/build-test-deploy.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/.github/workflows/build-test-deploy.yml rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/.github/workflows/build-test-deploy.yml diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/.gitignore b/.vortex/cli/tests/Fixtures/handler_process/tools_none/.gitignore similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/.gitignore rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/.gitignore diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/AGENTS.md b/.vortex/cli/tests/Fixtures/handler_process/tools_none/AGENTS.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/AGENTS.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/AGENTS.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/composer.json b/.vortex/cli/tests/Fixtures/handler_process/tools_none/composer.json similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/composer.json rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/composer.json diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/docs/testing.md b/.vortex/cli/tests/Fixtures/handler_process/tools_none/docs/testing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/docs/testing.md rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/docs/testing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/bootstrap/-FeatureContext.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/bootstrap/-FeatureContext.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/bootstrap/-FeatureContext.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/bootstrap/-FeatureContext.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-accessibility.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-accessibility.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-accessibility.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-accessibility.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-behat.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-behat.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-behat.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-behat.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-clamav.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-clamav.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-clamav.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-clamav.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-counter.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-counter.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-counter.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-counter.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-homepage.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-homepage.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-homepage.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-homepage.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-login.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-login.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-login.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-login.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-pages.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-pages.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-pages.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-pages.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-redis.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-redis.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-redis.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-redis.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-robotstxt.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-robotstxt.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-robotstxt.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-robotstxt.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-search.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-search.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-search.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-search.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-xmlsitemap.feature b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-xmlsitemap.feature similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/behat/features/-xmlsitemap.feature rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/behat/features/-xmlsitemap.feature diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/-bootstrap.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/-bootstrap.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/-bootstrap.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/-bootstrap.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-DatabaseSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-DatabaseSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-DatabaseSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-DatabaseSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-EnvironmentSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-EnvironmentSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-EnvironmentSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-EnvironmentSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SettingsTestCase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SettingsTestCase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SettingsTestCase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SettingsTestCase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SwitchableSettingsTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SwitchableSettingsTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SwitchableSettingsTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/tests/phpunit/Drupal/-SwitchableSettingsTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Functional/-SwBaseFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/FunctionalJavascript/-SwBaseFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Kernel/-SwBaseKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ArrayTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-AssertTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-BrowserHtmlDebugTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-MockTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Traits/-ReflectionTrait.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_base/tests/src/Unit/-SwBaseUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/src/Plugin/Block/CounterBlock.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/sw_demo.module b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/sw_demo.module similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/sw_demo.module rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/sw_demo.module diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/FunctionalJavascript/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Kernel/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/modules/custom/sw_demo/tests/src/Unit/-CounterBlockTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/default.settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/default.settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/default.settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/default.settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.fast404.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.fast404.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.fast404.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.fast404.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.redis.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.redis.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.redis.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/includes/modules/settings.redis.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/settings.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/settings.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/sites/default/settings.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/sites/default/settings.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Functional/-StarWarsFunctionalTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/FunctionalJavascript/-StarWarsFunctionalJavascriptTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Kernel/-StarWarsKernelTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-ExampleTest.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php b/.vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php rename to .vortex/cli/tests/Fixtures/handler_process/tools_none/web/themes/custom/star_wars/tests/src/Unit/-StarWarsUnitTestBase.php diff --git a/.vortex/installer/tests/Fixtures/handler_process/version_scheme_calver/.ignorecontent b/.vortex/cli/tests/Fixtures/handler_process/version_scheme_calver/.ignorecontent similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/version_scheme_calver/.ignorecontent rename to .vortex/cli/tests/Fixtures/handler_process/version_scheme_calver/.ignorecontent diff --git a/.vortex/installer/tests/Fixtures/handler_process/version_scheme_other/.env b/.vortex/cli/tests/Fixtures/handler_process/version_scheme_other/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/version_scheme_other/.env rename to .vortex/cli/tests/Fixtures/handler_process/version_scheme_other/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/version_scheme_other/docs/releasing.md b/.vortex/cli/tests/Fixtures/handler_process/version_scheme_other/docs/releasing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/version_scheme_other/docs/releasing.md rename to .vortex/cli/tests/Fixtures/handler_process/version_scheme_other/docs/releasing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/version_scheme_semver/.env b/.vortex/cli/tests/Fixtures/handler_process/version_scheme_semver/.env similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/version_scheme_semver/.env rename to .vortex/cli/tests/Fixtures/handler_process/version_scheme_semver/.env diff --git a/.vortex/installer/tests/Fixtures/handler_process/version_scheme_semver/docs/releasing.md b/.vortex/cli/tests/Fixtures/handler_process/version_scheme_semver/docs/releasing.md similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/version_scheme_semver/docs/releasing.md rename to .vortex/cli/tests/Fixtures/handler_process/version_scheme_semver/docs/releasing.md diff --git a/.vortex/installer/tests/Fixtures/handler_process/visual_regression_enabled/.github/workflows/test-vr.yml b/.vortex/cli/tests/Fixtures/handler_process/visual_regression_enabled/.github/workflows/test-vr.yml similarity index 100% rename from .vortex/installer/tests/Fixtures/handler_process/visual_regression_enabled/.github/workflows/test-vr.yml rename to .vortex/cli/tests/Fixtures/handler_process/visual_regression_enabled/.github/workflows/test-vr.yml diff --git a/.vortex/installer/tests/Fixtures/schema/broken_json.json b/.vortex/cli/tests/Fixtures/schema/broken_json.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/broken_json.json rename to .vortex/cli/tests/Fixtures/schema/broken_json.json diff --git a/.vortex/installer/tests/Fixtures/schema/empty.json b/.vortex/cli/tests/Fixtures/schema/empty.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/empty.json rename to .vortex/cli/tests/Fixtures/schema/empty.json diff --git a/.vortex/installer/tests/Fixtures/schema/empty_file.txt b/.vortex/cli/tests/Fixtures/schema/empty_file.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/empty_file.txt rename to .vortex/cli/tests/Fixtures/schema/empty_file.txt diff --git a/.vortex/installer/tests/Fixtures/schema/invalid_confirm_not_boolean.json b/.vortex/cli/tests/Fixtures/schema/invalid_confirm_not_boolean.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/invalid_confirm_not_boolean.json rename to .vortex/cli/tests/Fixtures/schema/invalid_confirm_not_boolean.json diff --git a/.vortex/installer/tests/Fixtures/schema/invalid_database_source.json b/.vortex/cli/tests/Fixtures/schema/invalid_database_source.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/invalid_database_source.json rename to .vortex/cli/tests/Fixtures/schema/invalid_database_source.json diff --git a/.vortex/installer/tests/Fixtures/schema/invalid_hosting_provider.json b/.vortex/cli/tests/Fixtures/schema/invalid_hosting_provider.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/invalid_hosting_provider.json rename to .vortex/cli/tests/Fixtures/schema/invalid_hosting_provider.json diff --git a/.vortex/installer/tests/Fixtures/schema/invalid_provision_type.json b/.vortex/cli/tests/Fixtures/schema/invalid_provision_type.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/invalid_provision_type.json rename to .vortex/cli/tests/Fixtures/schema/invalid_provision_type.json diff --git a/.vortex/installer/tests/Fixtures/schema/json_array.json b/.vortex/cli/tests/Fixtures/schema/json_array.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/json_array.json rename to .vortex/cli/tests/Fixtures/schema/json_array.json diff --git a/.vortex/installer/tests/Fixtures/schema/json_string.json b/.vortex/cli/tests/Fixtures/schema/json_string.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/json_string.json rename to .vortex/cli/tests/Fixtures/schema/json_string.json diff --git a/.vortex/installer/tests/Fixtures/schema/not_json.txt b/.vortex/cli/tests/Fixtures/schema/not_json.txt similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/not_json.txt rename to .vortex/cli/tests/Fixtures/schema/not_json.txt diff --git a/.vortex/installer/tests/Fixtures/schema/valid_acquia.json b/.vortex/cli/tests/Fixtures/schema/valid_acquia.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/valid_acquia.json rename to .vortex/cli/tests/Fixtures/schema/valid_acquia.json diff --git a/.vortex/installer/tests/Fixtures/schema/valid_database_provision.json b/.vortex/cli/tests/Fixtures/schema/valid_database_provision.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/valid_database_provision.json rename to .vortex/cli/tests/Fixtures/schema/valid_database_provision.json diff --git a/.vortex/installer/tests/Fixtures/schema/valid_full.json b/.vortex/cli/tests/Fixtures/schema/valid_full.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/valid_full.json rename to .vortex/cli/tests/Fixtures/schema/valid_full.json diff --git a/.vortex/installer/tests/Fixtures/schema/valid_migration.json b/.vortex/cli/tests/Fixtures/schema/valid_migration.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/valid_migration.json rename to .vortex/cli/tests/Fixtures/schema/valid_migration.json diff --git a/.vortex/installer/tests/Fixtures/schema/valid_minimal.json b/.vortex/cli/tests/Fixtures/schema/valid_minimal.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/valid_minimal.json rename to .vortex/cli/tests/Fixtures/schema/valid_minimal.json diff --git a/.vortex/installer/tests/Fixtures/schema/warning_unmet_dependency.json b/.vortex/cli/tests/Fixtures/schema/warning_unmet_dependency.json similarity index 100% rename from .vortex/installer/tests/Fixtures/schema/warning_unmet_dependency.json rename to .vortex/cli/tests/Fixtures/schema/warning_unmet_dependency.json diff --git a/.vortex/installer/tests/Functional/Command/BuildCommandTest.php b/.vortex/cli/tests/Functional/Command/BuildCommandTest.php similarity index 97% rename from .vortex/installer/tests/Functional/Command/BuildCommandTest.php rename to .vortex/cli/tests/Functional/Command/BuildCommandTest.php index 17e82de655..711a30890f 100644 --- a/.vortex/installer/tests/Functional/Command/BuildCommandTest.php +++ b/.vortex/cli/tests/Functional/Command/BuildCommandTest.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Command; +namespace DrevOps\VortexCli\Tests\Functional\Command; use AlexSkrypnyk\File\File; -use DrevOps\VortexInstaller\Command\BuildCommand; -use DrevOps\VortexInstaller\Command\CheckRequirementsCommand; -use DrevOps\VortexInstaller\Logger\FileLoggerInterface; -use DrevOps\VortexInstaller\Runner\ProcessRunner; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; -use DrevOps\VortexInstaller\Tests\Helpers\TuiOutput; +use DrevOps\VortexCli\Command\BuildCommand; +use DrevOps\VortexCli\Command\CheckRequirementsCommand; +use DrevOps\VortexCli\Logger\FileLoggerInterface; +use DrevOps\VortexCli\Runner\ProcessRunner; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Tests\Helpers\TuiOutput; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\MockObject\MockObject; diff --git a/.vortex/installer/tests/Functional/Command/CheckRequirementsCommandTest.php b/.vortex/cli/tests/Functional/Command/CheckRequirementsCommandTest.php similarity index 97% rename from .vortex/installer/tests/Functional/Command/CheckRequirementsCommandTest.php rename to .vortex/cli/tests/Functional/Command/CheckRequirementsCommandTest.php index 6685ffc620..666fd68383 100644 --- a/.vortex/installer/tests/Functional/Command/CheckRequirementsCommandTest.php +++ b/.vortex/cli/tests/Functional/Command/CheckRequirementsCommandTest.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Command; +namespace DrevOps\VortexCli\Tests\Functional\Command; use AlexSkrypnyk\File\File; -use DrevOps\VortexInstaller\Command\CheckRequirementsCommand; -use DrevOps\VortexInstaller\Runner\ProcessRunner; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; -use DrevOps\VortexInstaller\Tests\Helpers\TuiOutput; +use DrevOps\VortexCli\Command\CheckRequirementsCommand; +use DrevOps\VortexCli\Runner\ProcessRunner; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Tests\Helpers\TuiOutput; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\MockObject\MockObject; diff --git a/.vortex/installer/tests/Functional/Command/InstallCommandTest.php b/.vortex/cli/tests/Functional/Command/InstallCommandTest.php similarity index 96% rename from .vortex/installer/tests/Functional/Command/InstallCommandTest.php rename to .vortex/cli/tests/Functional/Command/InstallCommandTest.php index b0ae990ff3..5a174ced8a 100644 --- a/.vortex/installer/tests/Functional/Command/InstallCommandTest.php +++ b/.vortex/cli/tests/Functional/Command/InstallCommandTest.php @@ -2,24 +2,24 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Command; +namespace DrevOps\VortexCli\Tests\Functional\Command; -use DrevOps\VortexInstaller\Logger\FileLoggerInterface; -use DrevOps\VortexInstaller\Command\BuildCommand; -use DrevOps\VortexInstaller\Command\CheckRequirementsCommand; -use DrevOps\VortexInstaller\Command\InstallCommand; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Prompts\InstallerPresenter; -use DrevOps\VortexInstaller\Runner\ProcessRunner; -use DrevOps\VortexInstaller\Runner\RunnerInterface; -use DrevOps\VortexInstaller\Schema\AgentHelp; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; -use DrevOps\VortexInstaller\Tests\Helpers\TuiOutput; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\FileManager; -use DrevOps\VortexInstaller\Utils\OptionsResolver; +use DrevOps\VortexCli\Logger\FileLoggerInterface; +use DrevOps\VortexCli\Command\BuildCommand; +use DrevOps\VortexCli\Command\CheckRequirementsCommand; +use DrevOps\VortexCli\Command\InstallCommand; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Prompts\InstallerPresenter; +use DrevOps\VortexCli\Runner\ProcessRunner; +use DrevOps\VortexCli\Runner\RunnerInterface; +use DrevOps\VortexCli\Schema\AgentHelp; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Tests\Helpers\TuiOutput; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\FileManager; +use DrevOps\VortexCli\Utils\OptionsResolver; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\MockObject\MockObject; diff --git a/.vortex/installer/tests/Functional/Command/SchemaValidateCommandTest.php b/.vortex/cli/tests/Functional/Command/SchemaValidateCommandTest.php similarity index 94% rename from .vortex/installer/tests/Functional/Command/SchemaValidateCommandTest.php rename to .vortex/cli/tests/Functional/Command/SchemaValidateCommandTest.php index 6de2bd7212..bb87f1acc0 100644 --- a/.vortex/installer/tests/Functional/Command/SchemaValidateCommandTest.php +++ b/.vortex/cli/tests/Functional/Command/SchemaValidateCommandTest.php @@ -2,17 +2,17 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Command; - -use DrevOps\VortexInstaller\Command\InstallCommand; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Schema\SchemaValidator; -use DrevOps\VortexInstaller\Schema\SchemaGenerator; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +namespace DrevOps\VortexCli\Tests\Functional\Command; + +use DrevOps\VortexCli\Command\InstallCommand; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Schema\SchemaValidator; +use DrevOps\VortexCli\Schema\SchemaGenerator; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Functional/FunctionalTestCase.php b/.vortex/cli/tests/Functional/FunctionalTestCase.php similarity index 90% rename from .vortex/installer/tests/Functional/FunctionalTestCase.php rename to .vortex/cli/tests/Functional/FunctionalTestCase.php index 94b10c6f95..58279da7cd 100644 --- a/.vortex/installer/tests/Functional/FunctionalTestCase.php +++ b/.vortex/cli/tests/Functional/FunctionalTestCase.php @@ -2,18 +2,18 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional; +namespace DrevOps\VortexCli\Tests\Functional; use AlexSkrypnyk\PhpunitHelpers\Traits\ApplicationTrait; use AlexSkrypnyk\PhpunitHelpers\Traits\TuiTrait as UpstreamTuiTrait; -use DrevOps\VortexInstaller\Command\InstallCommand; -use DrevOps\VortexInstaller\Tests\Traits\TuiTrait; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexCli\Command\InstallCommand; +use DrevOps\VortexCli\Tests\Traits\TuiTrait; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Env; use AlexSkrypnyk\File\Replacer\Replacement; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Strings; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Strings; /** * Base class for functional tests. diff --git a/.vortex/installer/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php b/.vortex/cli/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php similarity index 92% rename from .vortex/installer/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php rename to .vortex/cli/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php index 801bcb546c..e3fc193929 100644 --- a/.vortex/installer/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php +++ b/.vortex/cli/tests/Functional/Handlers/AbstractHandlerProcessTestCase.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Command\InstallCommand; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Command\InstallCommand; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Utils\File; use Laravel\SerializableClosure\SerializableClosure; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\Attributes\RunInSeparateProcess; diff --git a/.vortex/installer/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php similarity index 90% rename from .vortex/installer/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php index b7326f544d..b0a84a24a5 100644 --- a/.vortex/installer/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/AiCodeInstructionsHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(AiCodeInstructions::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/BaselineHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/BaselineHandlerProcessTest.php similarity index 60% rename from .vortex/installer/tests/Functional/Handlers/BaselineHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/BaselineHandlerProcessTest.php index 690537cc88..1293848142 100644 --- a/.vortex/installer/tests/Functional/Handlers/BaselineHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/BaselineHandlerProcessTest.php @@ -2,37 +2,37 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Internal; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Git; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Internal; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Git; +use DrevOps\VortexCli\Utils\Tui; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(AssignAuthorPr::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/CiProviderHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/CiProviderHandlerProcessTest.php similarity index 87% rename from .vortex/installer/tests/Functional/Handlers/CiProviderHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/CiProviderHandlerProcessTest.php index 3f29118789..7c53795cde 100644 --- a/.vortex/installer/tests/Functional/Handlers/CiProviderHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/CiProviderHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(CiProvider::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php similarity index 79% rename from .vortex/installer/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php index 5c9fee243a..6faf153f13 100644 --- a/.vortex/installer/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/CodeCoverageProviderHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeCoverageProvider; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeCoverageProvider; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(CodeCoverageProvider::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php similarity index 91% rename from .vortex/installer/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php index 568ced2a58..7ec4575d8a 100644 --- a/.vortex/installer/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/CodeProviderHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(CodeProvider::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php similarity index 88% rename from .vortex/installer/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php index 36d902db95..3c9072008c 100644 --- a/.vortex/installer/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/CustomModulesHandlerProcessTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\CustomModules; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\CustomModules; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(CustomModules::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php similarity index 88% rename from .vortex/installer/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php index 4ece190fcd..a773293e1d 100644 --- a/.vortex/installer/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/DatabaseFetchSourceHandlerProcessTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(DatabaseFetchSource::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php similarity index 85% rename from .vortex/installer/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php index ff3dcda7bb..71e0402879 100644 --- a/.vortex/installer/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/DependencyUpdatesProviderHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(DependencyUpdatesProvider::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php similarity index 91% rename from .vortex/installer/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php index 478596f064..8fc33f586f 100644 --- a/.vortex/installer/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/DeployTypeHandlerProcessTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(DeployTypes::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/DocsHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/DocsHandlerProcessTest.php similarity index 81% rename from .vortex/installer/tests/Functional/Handlers/DocsHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/DocsHandlerProcessTest.php index 6e2f8ce27e..b574647802 100644 --- a/.vortex/installer/tests/Functional/Handlers/DocsHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/DocsHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(PreserveDocsProject::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php similarity index 88% rename from .vortex/installer/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php index 05ea769878..5b5ae06b32 100644 --- a/.vortex/installer/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/FrontendBuildHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(FrontendBuild::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/GitleaksHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/GitleaksHandlerProcessTest.php similarity index 81% rename from .vortex/installer/tests/Functional/Handlers/GitleaksHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/GitleaksHandlerProcessTest.php index ec7c1a098e..6470ea473b 100644 --- a/.vortex/installer/tests/Functional/Handlers/GitleaksHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/GitleaksHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Gitleaks; +use DrevOps\VortexCli\Prompts\Handlers\Gitleaks; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Gitleaks::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php similarity index 87% rename from .vortex/installer/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php index 43088eaea7..0d7bb9914c 100644 --- a/.vortex/installer/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/HostingProjectNameHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(HostingProjectName::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php similarity index 84% rename from .vortex/installer/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php index d7ec660e9e..fae51661c5 100644 --- a/.vortex/installer/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/HostingProviderHandlerProcessTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(HostingProvider::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php similarity index 95% rename from .vortex/installer/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php index ffb2fd02d0..5618017800 100644 --- a/.vortex/installer/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/MigrationFetchSourceHandlerProcessTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(MigrationFetchSource::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/MigrationHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/MigrationHandlerProcessTest.php similarity index 96% rename from .vortex/installer/tests/Functional/Handlers/MigrationHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/MigrationHandlerProcessTest.php index f183b17386..76e29a09dc 100644 --- a/.vortex/installer/tests/Functional/Handlers/MigrationHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/MigrationHandlerProcessTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Migration; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Migration::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ModulesHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ModulesHandlerProcessTest.php similarity index 97% rename from .vortex/installer/tests/Functional/Handlers/ModulesHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ModulesHandlerProcessTest.php index b324b3b509..0a5bec3a5c 100644 --- a/.vortex/installer/tests/Functional/Handlers/ModulesHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ModulesHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Modules; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\Modules; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Modules::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/NamesHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/NamesHandlerProcessTest.php similarity index 61% rename from .vortex/installer/tests/Functional/Handlers/NamesHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/NamesHandlerProcessTest.php index 76b6e1a976..9681fb46ac 100644 --- a/.vortex/installer/tests/Functional/Handlers/NamesHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/NamesHandlerProcessTest.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Name::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php similarity index 97% rename from .vortex/installer/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php index 4a5f533a85..fe12beae62 100644 --- a/.vortex/installer/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/NotificationChannelsHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\NotificationChannels; +use DrevOps\VortexCli\Prompts\Handlers\NotificationChannels; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(NotificationChannels::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ProfileHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ProfileHandlerProcessTest.php similarity index 77% rename from .vortex/installer/tests/Functional/Handlers/ProfileHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ProfileHandlerProcessTest.php index 5d716caccc..5edff715f9 100644 --- a/.vortex/installer/tests/Functional/Handlers/ProfileHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ProfileHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\ProfileCustom; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\ProfileCustom; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Profile::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php similarity index 84% rename from .vortex/installer/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php index 6809bfb4fa..2903c95e10 100644 --- a/.vortex/installer/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ProvisionTypeHandlerProcessTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(ProvisionType::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/PullRequestHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/PullRequestHandlerProcessTest.php similarity index 82% rename from .vortex/installer/tests/Functional/Handlers/PullRequestHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/PullRequestHandlerProcessTest.php index c04ec7175d..bbfdb35e11 100644 --- a/.vortex/installer/tests/Functional/Handlers/PullRequestHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/PullRequestHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(AssignAuthorPr::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ServicesHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ServicesHandlerProcessTest.php similarity index 86% rename from .vortex/installer/tests/Functional/Handlers/ServicesHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ServicesHandlerProcessTest.php index 0a720fd09c..320df58c75 100644 --- a/.vortex/installer/tests/Functional/Handlers/ServicesHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ServicesHandlerProcessTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Services::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/StarterHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/StarterHandlerProcessTest.php similarity index 87% rename from .vortex/installer/tests/Functional/Handlers/StarterHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/StarterHandlerProcessTest.php index ac5a67bec0..c908e90848 100644 --- a/.vortex/installer/tests/Functional/Handlers/StarterHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/StarterHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Starter::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ThemeHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ThemeHandlerProcessTest.php similarity index 93% rename from .vortex/installer/tests/Functional/Handlers/ThemeHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ThemeHandlerProcessTest.php index 50d502de9b..b318e781ba 100644 --- a/.vortex/installer/tests/Functional/Handlers/ThemeHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ThemeHandlerProcessTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Theme::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/TimezoneHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/TimezoneHandlerProcessTest.php similarity index 92% rename from .vortex/installer/tests/Functional/Handlers/TimezoneHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/TimezoneHandlerProcessTest.php index aa059b1e88..cc9e588c09 100644 --- a/.vortex/installer/tests/Functional/Handlers/TimezoneHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/TimezoneHandlerProcessTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Timezone::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/ToolsHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/ToolsHandlerProcessTest.php similarity index 98% rename from .vortex/installer/tests/Functional/Handlers/ToolsHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/ToolsHandlerProcessTest.php index 615c631400..740cc376de 100644 --- a/.vortex/installer/tests/Functional/Handlers/ToolsHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/ToolsHandlerProcessTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\Tools; -use DrevOps\VortexInstaller\Tests\Functional\FunctionalTestCase; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\Tools; +use DrevOps\VortexCli\Tests\Functional\FunctionalTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Tools::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php similarity index 93% rename from .vortex/installer/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php index 57f625a5d0..7f86405dc7 100644 --- a/.vortex/installer/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/VersionSchemeHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\VersionScheme; +use DrevOps\VortexCli\Prompts\Handlers\VersionScheme; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(VersionScheme::class)] diff --git a/.vortex/installer/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php b/.vortex/cli/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php similarity index 81% rename from .vortex/installer/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php rename to .vortex/cli/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php index a7af6fda3d..82bd519b02 100644 --- a/.vortex/installer/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php +++ b/.vortex/cli/tests/Functional/Handlers/VisualRegressionHandlerProcessTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional\Handlers; +namespace DrevOps\VortexCli\Tests\Functional\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\VisualRegression; +use DrevOps\VortexCli\Prompts\Handlers\VisualRegression; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(VisualRegression::class)] diff --git a/.vortex/installer/tests/Functional/PharTest.php b/.vortex/cli/tests/Functional/PharTest.php similarity index 96% rename from .vortex/installer/tests/Functional/PharTest.php rename to .vortex/cli/tests/Functional/PharTest.php index b54f35e67e..a6a141529e 100644 --- a/.vortex/installer/tests/Functional/PharTest.php +++ b/.vortex/cli/tests/Functional/PharTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Functional; +namespace DrevOps\VortexCli\Tests\Functional; use AlexSkrypnyk\PhpunitHelpers\Traits\ProcessTrait; use AlexSkrypnyk\PhpunitHelpers\Traits\TuiTrait; -use DrevOps\VortexInstaller\Command\InstallCommand; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Command\InstallCommand; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; /** diff --git a/.vortex/installer/tests/Helpers/TuiOutput.php b/.vortex/cli/tests/Helpers/TuiOutput.php similarity index 98% rename from .vortex/installer/tests/Helpers/TuiOutput.php rename to .vortex/cli/tests/Helpers/TuiOutput.php index 2c41ac9298..0434a5a7c1 100644 --- a/.vortex/installer/tests/Helpers/TuiOutput.php +++ b/.vortex/cli/tests/Helpers/TuiOutput.php @@ -1,8 +1,8 @@ createMockHttpClient(); - /** @var \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexInstaller\Downloader\ArchiverInterface $mock_archiver */ + /** @var \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexCli\Downloader\ArchiverInterface $mock_archiver */ $mock_archiver = $this->createMockArchiver(); $mock_archiver->expects($this->once())->method('validate'); $mock_archiver->expects($this->once())->method('extract'); @@ -247,7 +247,7 @@ public function testDownloadFromLocal(string $ref, string $expectedVersion): voi $expectedVersion = $ref; } - /** @var \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexInstaller\Downloader\ArchiverInterface $mock_archiver */ + /** @var \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexCli\Downloader\ArchiverInterface $mock_archiver */ $mock_archiver = $this->createMockArchiverWithExtract(); $downloader = new RepositoryDownloader(NULL, $mock_archiver); $version = $downloader->download(Artifact::create($temp_repo_dir, $ref), $destination); @@ -533,7 +533,7 @@ protected function createMockArchiverWithExtract(): MockObject { } /** - * @return \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexInstaller\Downloader\Downloader + * @return \PHPUnit\Framework\MockObject\MockObject&\DrevOps\VortexCli\Downloader\Downloader * Mock file downloader. */ protected function createMockFileDownloader(): MockObject { diff --git a/.vortex/installer/tests/Unit/EnvTest.php b/.vortex/cli/tests/Unit/EnvTest.php similarity index 99% rename from .vortex/installer/tests/Unit/EnvTest.php rename to .vortex/cli/tests/Unit/EnvTest.php index f333b82fee..a01d812197 100644 --- a/.vortex/installer/tests/Unit/EnvTest.php +++ b/.vortex/cli/tests/Unit/EnvTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; /** * Class InstallerDotEnvTest. diff --git a/.vortex/installer/tests/Unit/FileTest.php b/.vortex/cli/tests/Unit/FileTest.php similarity index 97% rename from .vortex/installer/tests/Unit/FileTest.php rename to .vortex/cli/tests/Unit/FileTest.php index c02833faea..eb37cc49fb 100644 --- a/.vortex/installer/tests/Unit/FileTest.php +++ b/.vortex/cli/tests/Unit/FileTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Fixtures/env/.expected/.env b/.vortex/cli/tests/Unit/Fixtures/env/.expected/.env similarity index 100% rename from .vortex/installer/tests/Unit/Fixtures/env/.expected/.env rename to .vortex/cli/tests/Unit/Fixtures/env/.expected/.env diff --git a/.vortex/installer/tests/Unit/Fixtures/env/_baseline/.env b/.vortex/cli/tests/Unit/Fixtures/env/_baseline/.env similarity index 100% rename from .vortex/installer/tests/Unit/Fixtures/env/_baseline/.env rename to .vortex/cli/tests/Unit/Fixtures/env/_baseline/.env diff --git a/.vortex/installer/tests/Unit/Fixtures/env/after/.env b/.vortex/cli/tests/Unit/Fixtures/env/after/.env similarity index 100% rename from .vortex/installer/tests/Unit/Fixtures/env/after/.env rename to .vortex/cli/tests/Unit/Fixtures/env/after/.env diff --git a/.vortex/installer/tests/Unit/GitTest.php b/.vortex/cli/tests/Unit/GitTest.php similarity index 96% rename from .vortex/installer/tests/Unit/GitTest.php rename to .vortex/cli/tests/Unit/GitTest.php index d357974217..1a8392e41e 100644 --- a/.vortex/installer/tests/Unit/GitTest.php +++ b/.vortex/cli/tests/Unit/GitTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use CzProject\GitPhp\RunnerResult; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Git; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Git; use CzProject\GitPhp\GitRepository; /** @@ -27,7 +27,7 @@ class GitTest extends UnitTestCase { * @param bool $with_commits * Whether to add commits to the repository. * - * @return array{string, \DrevOps\VortexInstaller\Utils\Git} + * @return array{string, \DrevOps\VortexCli\Utils\Git} * Array with temp directory path and Git object. */ protected function createTempGitRepo(bool $with_remote = FALSE, bool $with_commits = FALSE): array { diff --git a/.vortex/installer/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php b/.vortex/cli/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php similarity index 77% rename from .vortex/installer/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php rename to .vortex/cli/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php index 212b68adc7..5722ab2e23 100644 --- a/.vortex/installer/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php +++ b/.vortex/cli/tests/Unit/Handlers/AbstractHandlerDiscoveryTestCase.php @@ -2,53 +2,53 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; use AlexSkrypnyk\PhpunitHelpers\Traits\TuiTrait as UpstreamTuiTrait; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeCoverageProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CustomModules; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; -use DrevOps\VortexInstaller\Prompts\Handlers\Gitleaks; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Modules; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\NotificationChannels; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; -use DrevOps\VortexInstaller\Prompts\Handlers\Tools; -use DrevOps\VortexInstaller\Prompts\Handlers\VersionScheme; -use DrevOps\VortexInstaller\Prompts\Handlers\VisualRegression; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Tests\Traits\TuiTrait; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeCoverageProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Prompts\Handlers\CustomModules; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\Gitleaks; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Modules; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\NotificationChannels; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Prompts\Handlers\Tools; +use DrevOps\VortexCli\Prompts\Handlers\VersionScheme; +use DrevOps\VortexCli\Prompts\Handlers\VisualRegression; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Tests\Traits\TuiTrait; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Prompt; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Handlers/AbstractHandlerTypeTest.php b/.vortex/cli/tests/Unit/Handlers/AbstractHandlerTypeTest.php similarity index 59% rename from .vortex/installer/tests/Unit/Handlers/AbstractHandlerTypeTest.php rename to .vortex/cli/tests/Unit/Handlers/AbstractHandlerTypeTest.php index 55b37aff21..497e5dfc74 100644 --- a/.vortex/installer/tests/Unit/Handlers/AbstractHandlerTypeTest.php +++ b/.vortex/cli/tests/Unit/Handlers/AbstractHandlerTypeTest.php @@ -2,51 +2,51 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AbstractHandler; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeCoverageProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; -use DrevOps\VortexInstaller\Prompts\Handlers\Gitleaks; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Modules; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\NotificationChannels; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\ProfileCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; -use DrevOps\VortexInstaller\Prompts\Handlers\Tools; -use DrevOps\VortexInstaller\Prompts\Handlers\VersionScheme; -use DrevOps\VortexInstaller\Prompts\Handlers\VisualRegression; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Prompts\PromptType; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\AbstractHandler; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeCoverageProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\Gitleaks; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Modules; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\NotificationChannels; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\ProfileCustom; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Prompts\Handlers\Tools; +use DrevOps\VortexCli\Prompts\Handlers\VersionScheme; +use DrevOps\VortexCli\Prompts\Handlers\VisualRegression; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Prompts\PromptType; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php index e4d6b595c4..95a8a59034 100644 --- a/.vortex/installer/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/AiCodeInstructionsHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php similarity index 73% rename from .vortex/installer/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php index 7023933d7d..54e9020367 100644 --- a/.vortex/installer/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/BaselineHandlerDiscoveryTest.php @@ -2,17 +2,17 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Internal; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Converter; -use DrevOps\VortexInstaller\Utils\Env; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Git; -use DrevOps\VortexInstaller\Utils\JsonManipulator; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Prompts\Handlers\Internal; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Converter; +use DrevOps\VortexCli\Utils\Env; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Git; +use DrevOps\VortexCli\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\Tui; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Internal::class)] diff --git a/.vortex/installer/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php similarity index 90% rename from .vortex/installer/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php index 6295ee67ca..00a80f51d7 100644 --- a/.vortex/installer/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/CiProviderHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php similarity index 90% rename from .vortex/installer/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php index aad390163e..710a4a443d 100644 --- a/.vortex/installer/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/CodeCoverageProviderHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeCoverageProvider; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeCoverageProvider; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php similarity index 84% rename from .vortex/installer/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php index 94f1cea980..be91feef6d 100644 --- a/.vortex/installer/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/CodeProviderHandlerDiscoveryTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Git; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\CodeProvider; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Git; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php similarity index 94% rename from .vortex/installer/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php index 179206d606..dc7609eff2 100644 --- a/.vortex/installer/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/CustomModulesHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CustomModules; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\CustomModules; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php index bf775f2e65..f1bffad5e7 100644 --- a/.vortex/installer/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DatabaseFetchSourceHandlerDiscoveryTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php similarity index 89% rename from .vortex/installer/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php index 42777d56fc..2a17589d72 100644 --- a/.vortex/installer/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DatabaseImageHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php similarity index 90% rename from .vortex/installer/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php index 1e50e4d8e9..18457c56fa 100644 --- a/.vortex/installer/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DependencyUpdatesProviderHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php similarity index 88% rename from .vortex/installer/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php index 4a99272bbe..b19b74c528 100644 --- a/.vortex/installer/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DeployTypesHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Converter; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php similarity index 89% rename from .vortex/installer/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php index 5ca75b4c84..b15837637e 100644 --- a/.vortex/installer/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DocsHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php similarity index 95% rename from .vortex/installer/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php index 36ce0579bd..12e76bf544 100644 --- a/.vortex/installer/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/DomainHandlerDiscoveryTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\Domain; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Domain::class)] diff --git a/.vortex/installer/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php similarity index 91% rename from .vortex/installer/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php index 3f1a9db682..903d8f7799 100644 --- a/.vortex/installer/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/FrontendBuildHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Utils\Config; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php similarity index 90% rename from .vortex/installer/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php index e53bed58be..a38433bc87 100644 --- a/.vortex/installer/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/HostingProjectNameHandlerDiscoveryTest.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php similarity index 84% rename from .vortex/installer/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php index 658b676034..7583e3de98 100644 --- a/.vortex/installer/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/HostingProviderHandlerDiscoveryTest.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DeployTypes; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php index 9c688468ab..d57221b3a9 100644 --- a/.vortex/installer/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/MigrationFetchSourceHandlerDiscoveryTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php similarity index 88% rename from .vortex/installer/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php index 9fafcf752b..62ab0af2ef 100644 --- a/.vortex/installer/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/MigrationHandlerDiscoveryTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Yaml; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php similarity index 86% rename from .vortex/installer/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php index 4f5c68fdce..47d31529be 100644 --- a/.vortex/installer/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/MigrationImageHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Utils\Config; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php similarity index 93% rename from .vortex/installer/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php index 092595122a..e3f9d45e2b 100644 --- a/.vortex/installer/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ModulePrefixHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(ModulePrefix::class)] diff --git a/.vortex/installer/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php similarity index 96% rename from .vortex/installer/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php index 7a971f011d..1d4d452240 100644 --- a/.vortex/installer/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ModulesHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Modules; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\Modules; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php similarity index 93% rename from .vortex/installer/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php index fe83745104..e6aedcf6ed 100644 --- a/.vortex/installer/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/NamesHandlerDiscoveryTest.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\Theme; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Name::class)] diff --git a/.vortex/installer/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php similarity index 94% rename from .vortex/installer/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php index ae58938d02..64895b48b8 100644 --- a/.vortex/installer/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/NotificationChannelsHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\NotificationChannels; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexCli\Prompts\Handlers\NotificationChannels; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Converter; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php similarity index 90% rename from .vortex/installer/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php index b716a22b13..94ac755fb3 100644 --- a/.vortex/installer/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ProfileHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php similarity index 86% rename from .vortex/installer/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php index d432f3ead6..331c06f37e 100644 --- a/.vortex/installer/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ProvisionTypeHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Utils\Config; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php index 2d259c06a5..daad068865 100644 --- a/.vortex/installer/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/PullRequestHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; -use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexCli\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php similarity index 93% rename from .vortex/installer/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php index 627063c044..6bae36aa3a 100644 --- a/.vortex/installer/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ServicesHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Services; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Prompts\Handlers\Services; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\Yaml; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php similarity index 87% rename from .vortex/installer/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php index 5e1c40c61c..be80a95d32 100644 --- a/.vortex/installer/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/StarterHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Profile; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\Profile; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Utils\Config; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php similarity index 93% rename from .vortex/installer/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php index 6db91c22f2..b2154dd56c 100644 --- a/.vortex/installer/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ThemeHandlerDiscoveryTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\FrontendBuild; -use DrevOps\VortexInstaller\Prompts\Handlers\Theme; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\FrontendBuild; +use DrevOps\VortexCli\Prompts\Handlers\Theme; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php similarity index 87% rename from .vortex/installer/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php index 2becaf0308..2ad5ad4b4b 100644 --- a/.vortex/installer/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/TimezoneHandlerDiscoveryTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Timezone; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\Timezone; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Timezone::class)] diff --git a/.vortex/installer/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php similarity index 98% rename from .vortex/installer/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php index 67b3b45e5d..35e3bed78a 100644 --- a/.vortex/installer/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/ToolsHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\Tools; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexCli\Prompts\Handlers\Tools; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\File; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php index e388184785..bc47d48c49 100644 --- a/.vortex/installer/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/VersionSchemeHandlerDiscoveryTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\VersionScheme; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\VersionScheme; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; use Laravel\Prompts\Key; diff --git a/.vortex/installer/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php b/.vortex/cli/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php similarity index 92% rename from .vortex/installer/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php rename to .vortex/cli/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php index 7e7739cd89..cb385b31fd 100644 --- a/.vortex/installer/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php +++ b/.vortex/cli/tests/Unit/Handlers/WebrootHandlerDiscoveryTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Handlers; +namespace DrevOps\VortexCli\Tests\Unit\Handlers; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Utils\Config; use Laravel\Prompts\Key; use PHPUnit\Framework\Attributes\CoversClass; diff --git a/.vortex/installer/tests/Unit/JsonManipulatorTest.php b/.vortex/cli/tests/Unit/JsonManipulatorTest.php similarity index 98% rename from .vortex/installer/tests/Unit/JsonManipulatorTest.php rename to .vortex/cli/tests/Unit/JsonManipulatorTest.php index b2ddf5d1f3..b3fc513674 100644 --- a/.vortex/installer/tests/Unit/JsonManipulatorTest.php +++ b/.vortex/cli/tests/Unit/JsonManipulatorTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; -use DrevOps\VortexInstaller\Utils\File; -use DrevOps\VortexInstaller\Utils\JsonManipulator; +use DrevOps\VortexCli\Utils\File; +use DrevOps\VortexCli\Utils\JsonManipulator; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Seld\JsonLint\ParsingException; diff --git a/.vortex/installer/tests/Unit/Logger/FileLoggerTest.php b/.vortex/cli/tests/Unit/Logger/FileLoggerTest.php similarity index 98% rename from .vortex/installer/tests/Unit/Logger/FileLoggerTest.php rename to .vortex/cli/tests/Unit/Logger/FileLoggerTest.php index 11e0e5857f..ea593a9798 100644 --- a/.vortex/installer/tests/Unit/Logger/FileLoggerTest.php +++ b/.vortex/cli/tests/Unit/Logger/FileLoggerTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Logger; +namespace DrevOps\VortexCli\Tests\Unit\Logger; use AlexSkrypnyk\File\File; -use DrevOps\VortexInstaller\Logger\FileLogger; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Logger\FileLogger; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Prompts/InstallerPresenterTest.php b/.vortex/cli/tests/Unit/Prompts/InstallerPresenterTest.php similarity index 96% rename from .vortex/installer/tests/Unit/Prompts/InstallerPresenterTest.php rename to .vortex/cli/tests/Unit/Prompts/InstallerPresenterTest.php index dfb8b285d8..6a31ce5f9a 100644 --- a/.vortex/installer/tests/Unit/Prompts/InstallerPresenterTest.php +++ b/.vortex/cli/tests/Unit/Prompts/InstallerPresenterTest.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Prompts; - -use DrevOps\VortexInstaller\Downloader\Artifact; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\InstallerPresenter; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\Tui; +namespace DrevOps\VortexCli\Tests\Unit\Prompts; + +use DrevOps\VortexCli\Downloader\Artifact; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\InstallerPresenter; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\Tui; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Console\Output\BufferedOutput; diff --git a/.vortex/installer/tests/Unit/Prompts/PromptTypeTest.php b/.vortex/cli/tests/Unit/Prompts/PromptTypeTest.php similarity index 93% rename from .vortex/installer/tests/Unit/Prompts/PromptTypeTest.php rename to .vortex/cli/tests/Unit/Prompts/PromptTypeTest.php index 76fe3db661..995d434f8c 100644 --- a/.vortex/installer/tests/Unit/Prompts/PromptTypeTest.php +++ b/.vortex/cli/tests/Unit/Prompts/PromptTypeTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Prompts; +namespace DrevOps\VortexCli\Tests\Unit\Prompts; -use DrevOps\VortexInstaller\Prompts\PromptType; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Prompts\PromptType; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Runner/AbstractRunnerTest.php b/.vortex/cli/tests/Unit/Runner/AbstractRunnerTest.php similarity index 98% rename from .vortex/installer/tests/Unit/Runner/AbstractRunnerTest.php rename to .vortex/cli/tests/Unit/Runner/AbstractRunnerTest.php index e1b522a598..9575dc3963 100644 --- a/.vortex/installer/tests/Unit/Runner/AbstractRunnerTest.php +++ b/.vortex/cli/tests/Unit/Runner/AbstractRunnerTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Runner; +namespace DrevOps\VortexCli\Tests\Unit\Runner; -use DrevOps\VortexInstaller\Utils\Tui; -use DrevOps\VortexInstaller\Logger\FileLogger; -use DrevOps\VortexInstaller\Logger\FileLoggerInterface; -use DrevOps\VortexInstaller\Runner\AbstractRunner; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Tui; +use DrevOps\VortexCli\Logger\FileLogger; +use DrevOps\VortexCli\Logger\FileLoggerInterface; +use DrevOps\VortexCli\Runner\AbstractRunner; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Console\Output\OutputInterface; diff --git a/.vortex/installer/tests/Unit/Runner/CommandRunnerTest.php b/.vortex/cli/tests/Unit/Runner/CommandRunnerTest.php similarity index 96% rename from .vortex/installer/tests/Unit/Runner/CommandRunnerTest.php rename to .vortex/cli/tests/Unit/Runner/CommandRunnerTest.php index 75eb6754dd..8fb82d4079 100644 --- a/.vortex/installer/tests/Unit/Runner/CommandRunnerTest.php +++ b/.vortex/cli/tests/Unit/Runner/CommandRunnerTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Runner; +namespace DrevOps\VortexCli\Tests\Unit\Runner; -use DrevOps\VortexInstaller\Logger\FileLogger; -use DrevOps\VortexInstaller\Runner\CommandRunner; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Logger\FileLogger; +use DrevOps\VortexCli\Runner\CommandRunner; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Tui; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Console\Application; diff --git a/.vortex/installer/tests/Unit/Runner/ProcessRunnerTest.php b/.vortex/cli/tests/Unit/Runner/ProcessRunnerTest.php similarity index 98% rename from .vortex/installer/tests/Unit/Runner/ProcessRunnerTest.php rename to .vortex/cli/tests/Unit/Runner/ProcessRunnerTest.php index d69f458767..bb7b9822ac 100644 --- a/.vortex/installer/tests/Unit/Runner/ProcessRunnerTest.php +++ b/.vortex/cli/tests/Unit/Runner/ProcessRunnerTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Runner; +namespace DrevOps\VortexCli\Tests\Unit\Runner; use AlexSkrypnyk\File\File; -use DrevOps\VortexInstaller\Runner\ProcessRunner; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Runner\ProcessRunner; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Tui; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Console\Output\BufferedOutput; diff --git a/.vortex/installer/tests/Unit/Schema/AgentHelpTest.php b/.vortex/cli/tests/Unit/Schema/AgentHelpTest.php similarity index 95% rename from .vortex/installer/tests/Unit/Schema/AgentHelpTest.php rename to .vortex/cli/tests/Unit/Schema/AgentHelpTest.php index a6fa52a3c9..872f685869 100644 --- a/.vortex/installer/tests/Unit/Schema/AgentHelpTest.php +++ b/.vortex/cli/tests/Unit/Schema/AgentHelpTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Schema; +namespace DrevOps\VortexCli\Tests\Unit\Schema; -use DrevOps\VortexInstaller\Schema\AgentHelp; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Schema\AgentHelp; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Schema/SchemaGeneratorTest.php b/.vortex/cli/tests/Unit/Schema/SchemaGeneratorTest.php similarity index 83% rename from .vortex/installer/tests/Unit/Schema/SchemaGeneratorTest.php rename to .vortex/cli/tests/Unit/Schema/SchemaGeneratorTest.php index 1cd781b06e..094afe6e13 100644 --- a/.vortex/installer/tests/Unit/Schema/SchemaGeneratorTest.php +++ b/.vortex/cli/tests/Unit/Schema/SchemaGeneratorTest.php @@ -2,24 +2,24 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Schema; - -use DrevOps\VortexInstaller\Prompts\Handlers\AiCodeInstructions; -use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationImage; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\ProfileCustom; -use DrevOps\VortexInstaller\Prompts\Handlers\ThemeCustom; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Schema\SchemaGenerator; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; +namespace DrevOps\VortexCli\Tests\Unit\Schema; + +use DrevOps\VortexCli\Prompts\Handlers\AiCodeInstructions; +use DrevOps\VortexCli\Prompts\Handlers\CiProvider; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexCli\Prompts\Handlers\MigrationImage; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\ProfileCustom; +use DrevOps\VortexCli\Prompts\Handlers\ThemeCustom; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Schema\SchemaGenerator; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/Schema/SchemaValidatorTest.php b/.vortex/cli/tests/Unit/Schema/SchemaValidatorTest.php similarity index 84% rename from .vortex/installer/tests/Unit/Schema/SchemaValidatorTest.php rename to .vortex/cli/tests/Unit/Schema/SchemaValidatorTest.php index e3c103945d..b2d6fff662 100644 --- a/.vortex/installer/tests/Unit/Schema/SchemaValidatorTest.php +++ b/.vortex/cli/tests/Unit/Schema/SchemaValidatorTest.php @@ -2,26 +2,26 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Schema; - -use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\Domain; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProjectName; -use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; -use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\Migration; -use DrevOps\VortexInstaller\Prompts\Handlers\MigrationFetchSource; -use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; -use DrevOps\VortexInstaller\Prompts\Handlers\Name; -use DrevOps\VortexInstaller\Prompts\Handlers\Org; -use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; -use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; -use DrevOps\VortexInstaller\Prompts\Handlers\Starter; -use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; -use DrevOps\VortexInstaller\Prompts\PromptManager; -use DrevOps\VortexInstaller\Schema\SchemaValidator; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; +namespace DrevOps\VortexCli\Tests\Unit\Schema; + +use DrevOps\VortexCli\Prompts\Handlers\DatabaseFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\Domain; +use DrevOps\VortexCli\Prompts\Handlers\HostingProjectName; +use DrevOps\VortexCli\Prompts\Handlers\HostingProvider; +use DrevOps\VortexCli\Prompts\Handlers\MachineName; +use DrevOps\VortexCli\Prompts\Handlers\Migration; +use DrevOps\VortexCli\Prompts\Handlers\MigrationFetchSource; +use DrevOps\VortexCli\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexCli\Prompts\Handlers\Name; +use DrevOps\VortexCli\Prompts\Handlers\Org; +use DrevOps\VortexCli\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexCli\Prompts\Handlers\ProvisionType; +use DrevOps\VortexCli\Prompts\Handlers\Starter; +use DrevOps\VortexCli\Prompts\Handlers\Webroot; +use DrevOps\VortexCli\Prompts\PromptManager; +use DrevOps\VortexCli\Schema\SchemaValidator; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; use PHPUnit\Framework\Attributes\CoversClass; /** @@ -33,7 +33,7 @@ class SchemaValidatorTest extends UnitTestCase { protected SchemaValidator $validator; /** - * @var array + * @var array */ protected array $handlers; diff --git a/.vortex/installer/tests/Unit/SelfTest.php b/.vortex/cli/tests/Unit/SelfTest.php similarity index 97% rename from .vortex/installer/tests/Unit/SelfTest.php rename to .vortex/cli/tests/Unit/SelfTest.php index 1314acc688..eccb67af51 100644 --- a/.vortex/installer/tests/Unit/SelfTest.php +++ b/.vortex/cli/tests/Unit/SelfTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\Depends; diff --git a/.vortex/installer/tests/Unit/StringsTest.php b/.vortex/cli/tests/Unit/StringsTest.php similarity index 99% rename from .vortex/installer/tests/Unit/StringsTest.php rename to .vortex/cli/tests/Unit/StringsTest.php index 0ca9d0ef95..e218637ced 100644 --- a/.vortex/installer/tests/Unit/StringsTest.php +++ b/.vortex/cli/tests/Unit/StringsTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\Strings; +use DrevOps\VortexCli\Utils\Strings; /** * Tests for the Strings class. diff --git a/.vortex/installer/tests/Unit/Task/TaskOutputTest.php b/.vortex/cli/tests/Unit/Task/TaskOutputTest.php similarity index 95% rename from .vortex/installer/tests/Unit/Task/TaskOutputTest.php rename to .vortex/cli/tests/Unit/Task/TaskOutputTest.php index 04b70386dd..951527afbd 100644 --- a/.vortex/installer/tests/Unit/Task/TaskOutputTest.php +++ b/.vortex/cli/tests/Unit/Task/TaskOutputTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Task; +namespace DrevOps\VortexCli\Tests\Unit\Task; -use DrevOps\VortexInstaller\Task\TaskOutput; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Task\TaskOutput; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; use PHPUnit\Framework\Attributes\CoversClass; use Symfony\Component\Console\Formatter\OutputFormatter; use Symfony\Component\Console\Output\BufferedOutput; diff --git a/.vortex/installer/tests/Unit/TaskTest.php b/.vortex/cli/tests/Unit/TaskTest.php similarity index 99% rename from .vortex/installer/tests/Unit/TaskTest.php rename to .vortex/cli/tests/Unit/TaskTest.php index 9ec6a74890..20e2ac6182 100644 --- a/.vortex/installer/tests/Unit/TaskTest.php +++ b/.vortex/cli/tests/Unit/TaskTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Task\Task; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Task\Task; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\BufferedOutput; diff --git a/.vortex/installer/tests/Unit/TuiTest.php b/.vortex/cli/tests/Unit/TuiTest.php similarity index 99% rename from .vortex/installer/tests/Unit/TuiTest.php rename to .vortex/cli/tests/Unit/TuiTest.php index 96effc4119..049627e6e0 100644 --- a/.vortex/installer/tests/Unit/TuiTest.php +++ b/.vortex/cli/tests/Unit/TuiTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; -use DrevOps\VortexInstaller\Utils\Strings; +use DrevOps\VortexCli\Utils\Strings; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexCli\Utils\Tui; use Symfony\Component\Console\Output\BufferedOutput; diff --git a/.vortex/installer/tests/Unit/UnitTestCase.php b/.vortex/cli/tests/Unit/UnitTestCase.php similarity index 95% rename from .vortex/installer/tests/Unit/UnitTestCase.php rename to .vortex/cli/tests/Unit/UnitTestCase.php index 7be61e7972..98b39f83a2 100644 --- a/.vortex/installer/tests/Unit/UnitTestCase.php +++ b/.vortex/cli/tests/Unit/UnitTestCase.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use AlexSkrypnyk\File\Testing\DirectoryAssertionsTrait; use AlexSkrypnyk\File\Testing\FileAssertionsTrait; @@ -10,7 +10,7 @@ use AlexSkrypnyk\PhpunitHelpers\Traits\SerializableClosureTrait; use AlexSkrypnyk\PhpunitHelpers\UnitTestCase as UpstreamUnitTestCase; use AlexSkrypnyk\Snapshot\Testing\SnapshotTrait; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\Yaml; /** * Class UnitTestCase. diff --git a/.vortex/installer/tests/Unit/Utils/FileManagerTest.php b/.vortex/cli/tests/Unit/Utils/FileManagerTest.php similarity index 97% rename from .vortex/installer/tests/Unit/Utils/FileManagerTest.php rename to .vortex/cli/tests/Unit/Utils/FileManagerTest.php index 701f168e02..a76a8d376e 100644 --- a/.vortex/installer/tests/Unit/Utils/FileManagerTest.php +++ b/.vortex/cli/tests/Unit/Utils/FileManagerTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Utils; +namespace DrevOps\VortexCli\Tests\Unit\Utils; -use DrevOps\VortexInstaller\Downloader\Downloader; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\FileManager; +use DrevOps\VortexCli\Downloader\Downloader; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\FileManager; use PHPUnit\Framework\Attributes\CoversClass; /** diff --git a/.vortex/installer/tests/Unit/Utils/OptionsResolverTest.php b/.vortex/cli/tests/Unit/Utils/OptionsResolverTest.php similarity index 96% rename from .vortex/installer/tests/Unit/Utils/OptionsResolverTest.php rename to .vortex/cli/tests/Unit/Utils/OptionsResolverTest.php index 2b199de6de..41bc5f9786 100644 --- a/.vortex/installer/tests/Unit/Utils/OptionsResolverTest.php +++ b/.vortex/cli/tests/Unit/Utils/OptionsResolverTest.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit\Utils; +namespace DrevOps\VortexCli\Tests\Unit\Utils; -use DrevOps\VortexInstaller\Downloader\Artifact; -use DrevOps\VortexInstaller\Downloader\RepositoryDownloader; -use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; -use DrevOps\VortexInstaller\Utils\Config; -use DrevOps\VortexInstaller\Utils\OptionsResolver; +use DrevOps\VortexCli\Downloader\Artifact; +use DrevOps\VortexCli\Downloader\RepositoryDownloader; +use DrevOps\VortexCli\Tests\Unit\UnitTestCase; +use DrevOps\VortexCli\Utils\Config; +use DrevOps\VortexCli\Utils\OptionsResolver; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Process\ExecutableFinder; diff --git a/.vortex/installer/tests/Unit/ValidatorTest.php b/.vortex/cli/tests/Unit/ValidatorTest.php similarity index 99% rename from .vortex/installer/tests/Unit/ValidatorTest.php rename to .vortex/cli/tests/Unit/ValidatorTest.php index caf285bd2f..1f8dd4e2e2 100644 --- a/.vortex/installer/tests/Unit/ValidatorTest.php +++ b/.vortex/cli/tests/Unit/ValidatorTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\Validator; +use DrevOps\VortexCli\Utils\Validator; /** * Class InstallerHelpersTest. diff --git a/.vortex/installer/tests/Unit/VersionTest.php b/.vortex/cli/tests/Unit/VersionTest.php similarity index 97% rename from .vortex/installer/tests/Unit/VersionTest.php rename to .vortex/cli/tests/Unit/VersionTest.php index 25fee22901..ada6af4147 100644 --- a/.vortex/installer/tests/Unit/VersionTest.php +++ b/.vortex/cli/tests/Unit/VersionTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use AlexSkrypnyk\File\File; -use DrevOps\VortexInstaller\Utils\Version; +use DrevOps\VortexCli\Utils\Version; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Unit/YamlTest.php b/.vortex/cli/tests/Unit/YamlTest.php similarity index 98% rename from .vortex/installer/tests/Unit/YamlTest.php rename to .vortex/cli/tests/Unit/YamlTest.php index 3a4cc3f7f9..d74254c04f 100644 --- a/.vortex/installer/tests/Unit/YamlTest.php +++ b/.vortex/cli/tests/Unit/YamlTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\VortexInstaller\Tests\Unit; +namespace DrevOps\VortexCli\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\VortexInstaller\Utils\Yaml; +use DrevOps\VortexCli\Utils\Yaml; #[CoversClass(Yaml::class)] class YamlTest extends UnitTestCase { diff --git a/.vortex/installer/installer.php b/.vortex/cli/vortex similarity index 77% rename from .vortex/installer/installer.php rename to .vortex/cli/vortex index 0b2b882ff5..23eacaa54b 100755 --- a/.vortex/installer/installer.php +++ b/.vortex/cli/vortex @@ -8,9 +8,9 @@ declare(strict_types=1); -use DrevOps\VortexInstaller\Command\BuildCommand; -use DrevOps\VortexInstaller\Command\CheckRequirementsCommand; -use DrevOps\VortexInstaller\Command\InstallCommand; +use DrevOps\VortexCli\Command\BuildCommand; +use DrevOps\VortexCli\Command\CheckRequirementsCommand; +use DrevOps\VortexCli\Command\InstallCommand; use Symfony\Component\Console\Application; require_once $GLOBALS['_composer_autoload_path'] ?? __DIR__ . '/vendor/autoload.php'; From 6a49ba4202dea2baf57e9c0a24139892f8c1d1fb Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Wed, 29 Jul 2026 09:21:42 +1000 Subject: [PATCH 02/14] Renamed the package, binary and PHAR to 'vortex-cli' and declared 'symfony/process'. --- .vortex/cli/.gitignore | 2 +- .vortex/cli/box.json | 10 +++++----- .vortex/cli/composer.json | 7 ++++--- .vortex/cli/composer.lock | 2 +- .vortex/cli/phpcs.xml | 2 +- .vortex/cli/phpstan.neon | 2 +- .vortex/cli/rector.php | 2 +- .vortex/cli/tests/Functional/PharTest.php | 8 ++++---- .vortex/cli/vortex | 4 ++-- 9 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.vortex/cli/.gitignore b/.vortex/cli/.gitignore index d1e9f04891..fb851358da 100644 --- a/.vortex/cli/.gitignore +++ b/.vortex/cli/.gitignore @@ -1,6 +1,6 @@ !/composer.lock +/.build /.logs /.phpunit.cache -/build /vendor /vendor-bin diff --git a/.vortex/cli/box.json b/.vortex/cli/box.json index e35b6501fb..35918f7fdf 100644 --- a/.vortex/cli/box.json +++ b/.vortex/cli/box.json @@ -1,13 +1,13 @@ { - "output": "build/installer.phar", + "output": ".build/vortex.phar", "banner": [ "@file", - "Vortex CLI Installer.", + "Vortex CLI.", "", "", - "CLI Installer for Vortex project.
", + "CLI for Vortex project.
", "Run in your terminal:
", - "curl -SsL https://www.vortextemplate.com/install > installer.php && php installer.php
", + "curl -SsL https://www.vortextemplate.com/install > vortex.phar && php vortex.phar
", "More details: https://www.vortextemplate.com", "