Skip to content

Commit

Permalink
Merge branch 'hotfix/136'
Browse files Browse the repository at this point in the history
Close #136
  • Loading branch information
weierophinney committed May 31, 2016
2 parents 4fe86bd + 6f0d698 commit a45fb5e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Module
public function getAutoloaderConfig()
{
return ['Zend\Loader\StandardAutoloader' => ['namespaces' => [
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
__NAMESPACE__ => __DIR__,
]]];
}

Expand All @@ -34,7 +34,7 @@ public function getAutoloaderConfig()
*/
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
return include __DIR__ . '/../config/module.config.php';
}

/**
Expand Down

0 comments on commit a45fb5e

Please sign in to comment.