From 4a2645b6cf316b0cb5eba23d8fe75ed9c7f4edee Mon Sep 17 00:00:00 2001 From: Fabian Schmengler Date: Mon, 18 Feb 2019 16:51:39 +0100 Subject: [PATCH 1/2] Revert "Do not exclude tests directory from release" This reverts commit d4e0ffbc8b1f2c32092a361875fbab34aacb8c5e. --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 01f0d7c..656efee 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,4 +3,5 @@ /composer.json export-ignore /.travis.yml export-ignore /.travis export-ignore -/auth.json export-ignore +/tests export-ignore +/auth.json export-ignore \ No newline at end of file From 4edfb55a639cf9919dfbba08f3dd7aa3556647ab Mon Sep 17 00:00:00 2001 From: Fabian Schmengler Date: Mon, 18 Feb 2019 16:55:52 +0100 Subject: [PATCH 2/2] Move MethodLog from tests to src --- {tests/Util => src}/MethodLog.php | 2 +- src/Plugin/SessionStoragePlugin.php | 2 +- tests/Integration/AbstractSessionTest.php | 2 +- tests/Util/SectionLoadActionSpy.php | 1 + tests/Util/SessionSpy.php | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) rename {tests/Util => src}/MethodLog.php (98%) diff --git a/tests/Util/MethodLog.php b/src/MethodLog.php similarity index 98% rename from tests/Util/MethodLog.php rename to src/MethodLog.php index 1e24f11..772e60d 100644 --- a/tests/Util/MethodLog.php +++ b/src/MethodLog.php @@ -1,7 +1,7 @@