Skip to content

Commit a45fb5e

Browse files
committed
Merge branch 'hotfix/136'
Close #136
2 parents 4fe86bd + 6f0d698 commit a45fb5e

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5+
## 2.3.1 - 2016-05-31
6+
7+
Final release. Please use [Apigility](https://apigility.org) instead.
8+
9+
### Added
10+
11+
- Nothing.
12+
13+
### Deprecated
14+
15+
- Nothing.
16+
17+
### Removed
18+
19+
- Nothing.
20+
21+
### Fixed
22+
23+
- [#136](https://github.com/phly/PhlyRestfully/pull/136) fixes autoloading and
24+
configuration paths in the `Module` class, due to having moved into the source
25+
tree.
26+
527
## 2.3.0 - 2016-05-26
628

729
Final release. Please use [Apigility](https://apigility.org) instead.

src/Module.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Module
2323
public function getAutoloaderConfig()
2424
{
2525
return ['Zend\Loader\StandardAutoloader' => ['namespaces' => [
26-
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
26+
__NAMESPACE__ => __DIR__,
2727
]]];
2828
}
2929

@@ -34,7 +34,7 @@ public function getAutoloaderConfig()
3434
*/
3535
public function getConfig()
3636
{
37-
return include __DIR__ . '/config/module.config.php';
37+
return include __DIR__ . '/../config/module.config.php';
3838
}
3939

4040
/**

0 commit comments

Comments
 (0)