From a82ad0b48d8116bb108459d62140f3fa53a8a8ea Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Tue, 14 Jul 2015 10:37:38 -0500 Subject: [PATCH] Added an autoload-dev section to composer.json --- composer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 8b2de19..8de349b 100644 --- a/composer.json +++ b/composer.json @@ -49,11 +49,15 @@ }, "autoload": { "psr-4": { - "ZF\\ContentNegotiation\\": "src/", - "ZFTest\\ContentNegotiation\\": "test/" + "ZF\\ContentNegotiation\\": "src/" }, "classmap": [ "Module.php" ] + }, + "autoload-dev": { + "psr-4": { + "ZFTest\\ContentNegotiation\\": "test/" + } } }