From 721ea7b6134ff4a79855f524551f633c933e8111 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 15 Aug 2016 07:37:25 -0500 Subject: [PATCH] Moved constants autoloading to development - It's only required in development anyways. --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 174fa49..397c8cf 100644 --- a/composer.json +++ b/composer.json @@ -47,15 +47,15 @@ "autoload": { "psr-4": { "Application\\": "module/Application/src/" - }, - "files": [ - "src/Apigility/constants.php" - ] + } }, "autoload-dev": { "psr-4": { "ApplicationTest\\": "module/Application/test/" - } + }, + "files": [ + "src/Apigility/constants.php" + ] }, "scripts": { "cs-check": "phpcs",