From bee8a2da8c2bbf897c83bf46f3e4d4621ff23bc4 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 13 Oct 2014 15:55:21 -0500 Subject: [PATCH] Moved `PhlyTest` autoload configuration to autoload-dev - Per phly/http#11 -- test namespace only needs autoload rules in development. --- CHANGELOG.md | 18 ++++++++++++++++++ composer.json | 6 +++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd59af1..0d1fd56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release.. +## TBD - TBD + +### Added + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- Updated `composer.json` to push `PhlyTest\\Conduit\\` namespace autoloading to the `autoload-dev` section (meaning no entry will be added when generating production autoloader rules). + ## 0.6.1 - 2014-10-13 ### Added diff --git a/composer.json b/composer.json index 870ba02..70a323a 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,11 @@ }, "autoload": { "psr-4": { - "Phly\\Conduit\\": "src/", + "Phly\\Conduit\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { "PhlyTest\\Conduit\\": "test/" } }