From bf33e1702217bc5ea71387dafe6623b922f68b74 Mon Sep 17 00:00:00 2001 From: Eric Dowell Date: Tue, 24 Jan 2017 15:44:09 -0600 Subject: [PATCH] Update composer.json Only autoload the tests namespace in dev. --- composer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 60f1d038..e5f21170 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,11 @@ "database" ], "psr-4": { - "App\\": "app/", + "App\\": "app/" + } + }, + "autoload-dev": { + "psr-4": { "Tests\\": "tests/" } },