From 44bf16be0571d6ec225b02a19600738d0f2bcd1b Mon Sep 17 00:00:00 2001 From: Andrew Caya Date: Sun, 29 May 2016 19:07:36 -0400 Subject: [PATCH 1/2] Modified `Module.php` to fix broken paths due to changes from 84a9235db19. --- src/Module.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module.php b/src/Module.php index 940abaff..91532491 100644 --- a/src/Module.php +++ b/src/Module.php @@ -23,7 +23,7 @@ class Module public function getAutoloaderConfig() { return ['Zend\Loader\StandardAutoloader' => ['namespaces' => [ - __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, + __NAMESPACE__ => __DIR__, ]]]; } @@ -34,7 +34,7 @@ public function getAutoloaderConfig() */ public function getConfig() { - return include __DIR__ . '/config/module.config.php'; + return include __DIR__ . '/../config/module.config.php'; } /** From 6f0d698c6cb0319e7b9d44c226eafd7a710c9d2b Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Tue, 31 May 2016 09:20:10 -0500 Subject: [PATCH 2/2] Added CHANGELOG for #136 --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e286c816..4437eb8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. +## 2.3.1 - 2016-05-31 + +Final release. Please use [Apigility](https://apigility.org) instead. + +### Added + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- [#136](https://github.com/phly/PhlyRestfully/pull/136) fixes autoloading and + configuration paths in the `Module` class, due to having moved into the source + tree. + ## 2.3.0 - 2016-05-26 Final release. Please use [Apigility](https://apigility.org) instead.