From 695d8b0299b7e32577f87e3335d41dc6b64a906f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 2 Oct 2025 12:31:37 +0100 Subject: [PATCH] Move all files to test-driven-drupal/demo/drupal-london/ --- .../demo/drupal-london/.dockerignore | 0 .../demo/drupal-london/.env.example | 0 .envrc => test-driven-drupal/demo/drupal-london/.envrc | 0 .../demo/drupal-london/.githooks}/pre-push | 0 .../demo/drupal-london/.githooks}/prepare-commit-msg | 0 .gitignore => test-driven-drupal/demo/drupal-london/.gitignore | 0 .../demo/drupal-london/.hadolint.yaml | 0 .tmux => test-driven-drupal/demo/drupal-london/.tmux | 0 .../demo/drupal-london/CHANGELOG.md | 0 Dockerfile => test-driven-drupal/demo/drupal-london/Dockerfile | 0 README.md => test-driven-drupal/demo/drupal-london/README.md | 0 .../demo/drupal-london/build-configs.yaml | 0 .../demo/drupal-london/composer.json | 0 .../demo/drupal-london/composer.lock | 0 devenv.lock => test-driven-drupal/demo/drupal-london/devenv.lock | 0 devenv.nix => test-driven-drupal/demo/drupal-london/devenv.nix | 0 devenv.yaml => test-driven-drupal/demo/drupal-london/devenv.yaml | 0 .../demo/drupal-london/docker-compose.override.yaml.example | 0 .../demo/drupal-london/docker-compose.yaml | 0 .../demo/drupal-london/phpcs.xml.dist | 0 .../demo/drupal-london/phpunit.xml.dist | 0 run => test-driven-drupal/demo/drupal-london/run | 0 .../demo/drupal-london/snippets.lua | 0 .../docker/images/php/root/usr/local/bin/docker-entrypoint-php | 0 .../docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini | 0 .../tools}/docker/images/php/root/usr/local/etc/php/php.ini | 0 .../tools}/docker/images/web/root/etc/nginx/conf.d/default.conf | 0 .../demo/drupal-london/web}/modules/custom/example/.gitignore | 0 .../demo/drupal-london/web}/modules/custom/example/composer.json | 0 .../drupal-london/web}/modules/custom/example/example.info.yml | 0 .../drupal-london/web}/modules/custom/example/example.routing.yml | 0 .../web}/modules/custom/example/example.services.yml | 0 .../demo/drupal-london/web}/modules/custom/example/phpcs.xml.dist | 0 .../custom/example/src/Controller/ExamplePageController.php | 0 .../custom/example/tests/src/Functional/ExamplePageTest.php | 0 .../web}/modules/custom/example/tests/src/Kernel/.keep | 0 .../web}/modules/custom/example/tests/src/Unit/.keep | 0 .../web}/modules/custom/opdavies_talks/opdavies_talks.info.yml | 0 .../web}/modules/custom/opdavies_talks/opdavies_talks.routing.yml | 0 .../modules/custom/opdavies_talks/opdavies_talks.services.yml | 0 .../custom/opdavies_talks/src/Controller/TalksPageController.php | 0 .../custom/opdavies_talks/src/Repository/TalkNodeRepository.php | 0 .../custom/opdavies_talks/tests/src/Functional/TalksPageTest.php | 0 .../tests/src/Kernel/Repository/TalkNodeRepositoryTest.php | 0 44 files changed, 0 insertions(+), 0 deletions(-) rename .dockerignore => test-driven-drupal/demo/drupal-london/.dockerignore (100%) rename .env.example => test-driven-drupal/demo/drupal-london/.env.example (100%) rename .envrc => test-driven-drupal/demo/drupal-london/.envrc (100%) rename {.githooks => test-driven-drupal/demo/drupal-london/.githooks}/pre-push (100%) rename {.githooks => test-driven-drupal/demo/drupal-london/.githooks}/prepare-commit-msg (100%) rename .gitignore => test-driven-drupal/demo/drupal-london/.gitignore (100%) rename .hadolint.yaml => test-driven-drupal/demo/drupal-london/.hadolint.yaml (100%) rename .tmux => test-driven-drupal/demo/drupal-london/.tmux (100%) rename CHANGELOG.md => test-driven-drupal/demo/drupal-london/CHANGELOG.md (100%) rename Dockerfile => test-driven-drupal/demo/drupal-london/Dockerfile (100%) rename README.md => test-driven-drupal/demo/drupal-london/README.md (100%) rename build-configs.yaml => test-driven-drupal/demo/drupal-london/build-configs.yaml (100%) rename composer.json => test-driven-drupal/demo/drupal-london/composer.json (100%) rename composer.lock => test-driven-drupal/demo/drupal-london/composer.lock (100%) rename devenv.lock => test-driven-drupal/demo/drupal-london/devenv.lock (100%) rename devenv.nix => test-driven-drupal/demo/drupal-london/devenv.nix (100%) rename devenv.yaml => test-driven-drupal/demo/drupal-london/devenv.yaml (100%) rename docker-compose.override.yaml.example => test-driven-drupal/demo/drupal-london/docker-compose.override.yaml.example (100%) rename docker-compose.yaml => test-driven-drupal/demo/drupal-london/docker-compose.yaml (100%) rename phpcs.xml.dist => test-driven-drupal/demo/drupal-london/phpcs.xml.dist (100%) rename phpunit.xml.dist => test-driven-drupal/demo/drupal-london/phpunit.xml.dist (100%) rename run => test-driven-drupal/demo/drupal-london/run (100%) rename snippets.lua => test-driven-drupal/demo/drupal-london/snippets.lua (100%) rename {tools => test-driven-drupal/demo/drupal-london/tools}/docker/images/php/root/usr/local/bin/docker-entrypoint-php (100%) rename {tools => test-driven-drupal/demo/drupal-london/tools}/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini (100%) rename {tools => test-driven-drupal/demo/drupal-london/tools}/docker/images/php/root/usr/local/etc/php/php.ini (100%) rename {tools => test-driven-drupal/demo/drupal-london/tools}/docker/images/web/root/etc/nginx/conf.d/default.conf (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/.gitignore (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/composer.json (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/example.info.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/example.routing.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/example.services.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/phpcs.xml.dist (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/src/Controller/ExamplePageController.php (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/tests/src/Functional/ExamplePageTest.php (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/tests/src/Kernel/.keep (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/example/tests/src/Unit/.keep (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/opdavies_talks.info.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/opdavies_talks.routing.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/opdavies_talks.services.yml (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/src/Controller/TalksPageController.php (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/src/Repository/TalkNodeRepository.php (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/tests/src/Functional/TalksPageTest.php (100%) rename {web => test-driven-drupal/demo/drupal-london/web}/modules/custom/opdavies_talks/tests/src/Kernel/Repository/TalkNodeRepositoryTest.php (100%) diff --git a/.dockerignore b/test-driven-drupal/demo/drupal-london/.dockerignore similarity index 100% rename from .dockerignore rename to test-driven-drupal/demo/drupal-london/.dockerignore diff --git a/.env.example b/test-driven-drupal/demo/drupal-london/.env.example similarity index 100% rename from .env.example rename to test-driven-drupal/demo/drupal-london/.env.example diff --git a/.envrc b/test-driven-drupal/demo/drupal-london/.envrc similarity index 100% rename from .envrc rename to test-driven-drupal/demo/drupal-london/.envrc diff --git a/.githooks/pre-push b/test-driven-drupal/demo/drupal-london/.githooks/pre-push similarity index 100% rename from .githooks/pre-push rename to test-driven-drupal/demo/drupal-london/.githooks/pre-push diff --git a/.githooks/prepare-commit-msg b/test-driven-drupal/demo/drupal-london/.githooks/prepare-commit-msg similarity index 100% rename from .githooks/prepare-commit-msg rename to test-driven-drupal/demo/drupal-london/.githooks/prepare-commit-msg diff --git a/.gitignore b/test-driven-drupal/demo/drupal-london/.gitignore similarity index 100% rename from .gitignore rename to test-driven-drupal/demo/drupal-london/.gitignore diff --git a/.hadolint.yaml b/test-driven-drupal/demo/drupal-london/.hadolint.yaml similarity index 100% rename from .hadolint.yaml rename to test-driven-drupal/demo/drupal-london/.hadolint.yaml diff --git a/.tmux b/test-driven-drupal/demo/drupal-london/.tmux similarity index 100% rename from .tmux rename to test-driven-drupal/demo/drupal-london/.tmux diff --git a/CHANGELOG.md b/test-driven-drupal/demo/drupal-london/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to test-driven-drupal/demo/drupal-london/CHANGELOG.md diff --git a/Dockerfile b/test-driven-drupal/demo/drupal-london/Dockerfile similarity index 100% rename from Dockerfile rename to test-driven-drupal/demo/drupal-london/Dockerfile diff --git a/README.md b/test-driven-drupal/demo/drupal-london/README.md similarity index 100% rename from README.md rename to test-driven-drupal/demo/drupal-london/README.md diff --git a/build-configs.yaml b/test-driven-drupal/demo/drupal-london/build-configs.yaml similarity index 100% rename from build-configs.yaml rename to test-driven-drupal/demo/drupal-london/build-configs.yaml diff --git a/composer.json b/test-driven-drupal/demo/drupal-london/composer.json similarity index 100% rename from composer.json rename to test-driven-drupal/demo/drupal-london/composer.json diff --git a/composer.lock b/test-driven-drupal/demo/drupal-london/composer.lock similarity index 100% rename from composer.lock rename to test-driven-drupal/demo/drupal-london/composer.lock diff --git a/devenv.lock b/test-driven-drupal/demo/drupal-london/devenv.lock similarity index 100% rename from devenv.lock rename to test-driven-drupal/demo/drupal-london/devenv.lock diff --git a/devenv.nix b/test-driven-drupal/demo/drupal-london/devenv.nix similarity index 100% rename from devenv.nix rename to test-driven-drupal/demo/drupal-london/devenv.nix diff --git a/devenv.yaml b/test-driven-drupal/demo/drupal-london/devenv.yaml similarity index 100% rename from devenv.yaml rename to test-driven-drupal/demo/drupal-london/devenv.yaml diff --git a/docker-compose.override.yaml.example b/test-driven-drupal/demo/drupal-london/docker-compose.override.yaml.example similarity index 100% rename from docker-compose.override.yaml.example rename to test-driven-drupal/demo/drupal-london/docker-compose.override.yaml.example diff --git a/docker-compose.yaml b/test-driven-drupal/demo/drupal-london/docker-compose.yaml similarity index 100% rename from docker-compose.yaml rename to test-driven-drupal/demo/drupal-london/docker-compose.yaml diff --git a/phpcs.xml.dist b/test-driven-drupal/demo/drupal-london/phpcs.xml.dist similarity index 100% rename from phpcs.xml.dist rename to test-driven-drupal/demo/drupal-london/phpcs.xml.dist diff --git a/phpunit.xml.dist b/test-driven-drupal/demo/drupal-london/phpunit.xml.dist similarity index 100% rename from phpunit.xml.dist rename to test-driven-drupal/demo/drupal-london/phpunit.xml.dist diff --git a/run b/test-driven-drupal/demo/drupal-london/run similarity index 100% rename from run rename to test-driven-drupal/demo/drupal-london/run diff --git a/snippets.lua b/test-driven-drupal/demo/drupal-london/snippets.lua similarity index 100% rename from snippets.lua rename to test-driven-drupal/demo/drupal-london/snippets.lua diff --git a/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php b/test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php similarity index 100% rename from tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php rename to test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php diff --git a/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini b/test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini similarity index 100% rename from tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini rename to test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini diff --git a/tools/docker/images/php/root/usr/local/etc/php/php.ini b/test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/etc/php/php.ini similarity index 100% rename from tools/docker/images/php/root/usr/local/etc/php/php.ini rename to test-driven-drupal/demo/drupal-london/tools/docker/images/php/root/usr/local/etc/php/php.ini diff --git a/tools/docker/images/web/root/etc/nginx/conf.d/default.conf b/test-driven-drupal/demo/drupal-london/tools/docker/images/web/root/etc/nginx/conf.d/default.conf similarity index 100% rename from tools/docker/images/web/root/etc/nginx/conf.d/default.conf rename to test-driven-drupal/demo/drupal-london/tools/docker/images/web/root/etc/nginx/conf.d/default.conf diff --git a/web/modules/custom/example/.gitignore b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/.gitignore similarity index 100% rename from web/modules/custom/example/.gitignore rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/.gitignore diff --git a/web/modules/custom/example/composer.json b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/composer.json similarity index 100% rename from web/modules/custom/example/composer.json rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/composer.json diff --git a/web/modules/custom/example/example.info.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.info.yml similarity index 100% rename from web/modules/custom/example/example.info.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.info.yml diff --git a/web/modules/custom/example/example.routing.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.routing.yml similarity index 100% rename from web/modules/custom/example/example.routing.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.routing.yml diff --git a/web/modules/custom/example/example.services.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.services.yml similarity index 100% rename from web/modules/custom/example/example.services.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/example.services.yml diff --git a/web/modules/custom/example/phpcs.xml.dist b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/phpcs.xml.dist similarity index 100% rename from web/modules/custom/example/phpcs.xml.dist rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/phpcs.xml.dist diff --git a/web/modules/custom/example/src/Controller/ExamplePageController.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/src/Controller/ExamplePageController.php similarity index 100% rename from web/modules/custom/example/src/Controller/ExamplePageController.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/src/Controller/ExamplePageController.php diff --git a/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php similarity index 100% rename from web/modules/custom/example/tests/src/Functional/ExamplePageTest.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php diff --git a/web/modules/custom/example/tests/src/Kernel/.keep b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Kernel/.keep similarity index 100% rename from web/modules/custom/example/tests/src/Kernel/.keep rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Kernel/.keep diff --git a/web/modules/custom/example/tests/src/Unit/.keep b/test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Unit/.keep similarity index 100% rename from web/modules/custom/example/tests/src/Unit/.keep rename to test-driven-drupal/demo/drupal-london/web/modules/custom/example/tests/src/Unit/.keep diff --git a/web/modules/custom/opdavies_talks/opdavies_talks.info.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.info.yml similarity index 100% rename from web/modules/custom/opdavies_talks/opdavies_talks.info.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.info.yml diff --git a/web/modules/custom/opdavies_talks/opdavies_talks.routing.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.routing.yml similarity index 100% rename from web/modules/custom/opdavies_talks/opdavies_talks.routing.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.routing.yml diff --git a/web/modules/custom/opdavies_talks/opdavies_talks.services.yml b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.services.yml similarity index 100% rename from web/modules/custom/opdavies_talks/opdavies_talks.services.yml rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/opdavies_talks.services.yml diff --git a/web/modules/custom/opdavies_talks/src/Controller/TalksPageController.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/src/Controller/TalksPageController.php similarity index 100% rename from web/modules/custom/opdavies_talks/src/Controller/TalksPageController.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/src/Controller/TalksPageController.php diff --git a/web/modules/custom/opdavies_talks/src/Repository/TalkNodeRepository.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/src/Repository/TalkNodeRepository.php similarity index 100% rename from web/modules/custom/opdavies_talks/src/Repository/TalkNodeRepository.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/src/Repository/TalkNodeRepository.php diff --git a/web/modules/custom/opdavies_talks/tests/src/Functional/TalksPageTest.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/tests/src/Functional/TalksPageTest.php similarity index 100% rename from web/modules/custom/opdavies_talks/tests/src/Functional/TalksPageTest.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/tests/src/Functional/TalksPageTest.php diff --git a/web/modules/custom/opdavies_talks/tests/src/Kernel/Repository/TalkNodeRepositoryTest.php b/test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/tests/src/Kernel/Repository/TalkNodeRepositoryTest.php similarity index 100% rename from web/modules/custom/opdavies_talks/tests/src/Kernel/Repository/TalkNodeRepositoryTest.php rename to test-driven-drupal/demo/drupal-london/web/modules/custom/opdavies_talks/tests/src/Kernel/Repository/TalkNodeRepositoryTest.php