From 10f0f7fd111f0e8e2387a3931408583d87f29a32 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 18 Oct 2019 07:40:14 +0100 Subject: [PATCH] Move custom app code Move custom app code (the `src` and `tests` directories) into `app`. --- {src => app/src}/TwigExtension/Talk/TalksExtension.php | 0 .../tests}/TwigExtension/Talk/RetrievingEventsTest.php | 0 .../tests}/TwigExtension/Talk/RetrievingTalksTest.php | 0 composer.json | 4 ++-- 4 files changed, 2 insertions(+), 2 deletions(-) rename {src => app/src}/TwigExtension/Talk/TalksExtension.php (100%) rename {tests => app/tests}/TwigExtension/Talk/RetrievingEventsTest.php (100%) rename {tests => app/tests}/TwigExtension/Talk/RetrievingTalksTest.php (100%) diff --git a/src/TwigExtension/Talk/TalksExtension.php b/app/src/TwigExtension/Talk/TalksExtension.php similarity index 100% rename from src/TwigExtension/Talk/TalksExtension.php rename to app/src/TwigExtension/Talk/TalksExtension.php diff --git a/tests/TwigExtension/Talk/RetrievingEventsTest.php b/app/tests/TwigExtension/Talk/RetrievingEventsTest.php similarity index 100% rename from tests/TwigExtension/Talk/RetrievingEventsTest.php rename to app/tests/TwigExtension/Talk/RetrievingEventsTest.php diff --git a/tests/TwigExtension/Talk/RetrievingTalksTest.php b/app/tests/TwigExtension/Talk/RetrievingTalksTest.php similarity index 100% rename from tests/TwigExtension/Talk/RetrievingTalksTest.php rename to app/tests/TwigExtension/Talk/RetrievingTalksTest.php diff --git a/composer.json b/composer.json index 5e4dfa27..898f1b27 100644 --- a/composer.json +++ b/composer.json @@ -50,12 +50,12 @@ }, "autoload": { "psr-4": { - "App\\": "src" + "App\\": "app/src" } }, "autoload-dev": { "psr-4": { - "App\\Tests\\": "tests" + "App\\Tests\\": "app/tests" } } }