From f6bf98bf1e7b83f46b530931721df74951a2893f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 29 Sep 2025 23:09:31 +0100 Subject: [PATCH] Move all files to php/phpunit/ --- {.github => php/phpunit/.github}/workflows/main.yml | 0 .gitignore => php/phpunit/.gitignore | 0 Makefile => php/phpunit/Makefile | 0 README.md => php/phpunit/README.md | 0 composer.json => php/phpunit/composer.json | 0 composer.lock => php/phpunit/composer.lock | 0 phpunit.xml => php/phpunit/phpunit.xml | 0 {src => php/phpunit/src}/RomanNumeralsConverter.php | 0 {tests => php/phpunit/tests}/RomanNumeralsConverterTest.php | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename {.github => php/phpunit/.github}/workflows/main.yml (100%) rename .gitignore => php/phpunit/.gitignore (100%) rename Makefile => php/phpunit/Makefile (100%) rename README.md => php/phpunit/README.md (100%) rename composer.json => php/phpunit/composer.json (100%) rename composer.lock => php/phpunit/composer.lock (100%) rename phpunit.xml => php/phpunit/phpunit.xml (100%) rename {src => php/phpunit/src}/RomanNumeralsConverter.php (100%) rename {tests => php/phpunit/tests}/RomanNumeralsConverterTest.php (100%) diff --git a/.github/workflows/main.yml b/php/phpunit/.github/workflows/main.yml similarity index 100% rename from .github/workflows/main.yml rename to php/phpunit/.github/workflows/main.yml diff --git a/.gitignore b/php/phpunit/.gitignore similarity index 100% rename from .gitignore rename to php/phpunit/.gitignore diff --git a/Makefile b/php/phpunit/Makefile similarity index 100% rename from Makefile rename to php/phpunit/Makefile diff --git a/README.md b/php/phpunit/README.md similarity index 100% rename from README.md rename to php/phpunit/README.md diff --git a/composer.json b/php/phpunit/composer.json similarity index 100% rename from composer.json rename to php/phpunit/composer.json diff --git a/composer.lock b/php/phpunit/composer.lock similarity index 100% rename from composer.lock rename to php/phpunit/composer.lock diff --git a/phpunit.xml b/php/phpunit/phpunit.xml similarity index 100% rename from phpunit.xml rename to php/phpunit/phpunit.xml diff --git a/src/RomanNumeralsConverter.php b/php/phpunit/src/RomanNumeralsConverter.php similarity index 100% rename from src/RomanNumeralsConverter.php rename to php/phpunit/src/RomanNumeralsConverter.php diff --git a/tests/RomanNumeralsConverterTest.php b/php/phpunit/tests/RomanNumeralsConverterTest.php similarity index 100% rename from tests/RomanNumeralsConverterTest.php rename to php/phpunit/tests/RomanNumeralsConverterTest.php