From 99d0f682f3a988790d4d2dbaf69525b2203c6821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Mo=CC=88ller?= Date: Tue, 18 Aug 2015 16:11:33 +0200 Subject: [PATCH] Fix: No need to autoload tests in production --- composer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9513141..803abf4 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,11 @@ }, "autoload": { "psr-4": { - "Tree\\": "src/", + "Tree\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { "Tree\\Test\\": "tests/" } }