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. 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'; } /**