From ecccab4e0c02706998d61b9a2453f32b2207683c Mon Sep 17 00:00:00 2001 From: Robbie Mackay Date: Tue, 16 May 2017 16:57:32 +1200 Subject: [PATCH] Fix up PSR 4 loading for Tests namespace --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 26317da787..dd4c43bf99 100644 --- a/composer.json +++ b/composer.json @@ -79,7 +79,8 @@ }, "autoload-dev": { "psr-4": { - "Tests\\": "tests/" + "Tests\\Unit\\": "tests/unit", + "Tests\\Integration\\": "tests/integration" } }, "minimum-stability": "dev",