File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file, in reverse chronological order by release.
4
4
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
+
5
27
## 2.3.0 - 2016-05-26
6
28
7
29
Final release. Please use [ Apigility] ( https://apigility.org ) instead.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Module
23
23
public function getAutoloaderConfig ()
24
24
{
25
25
return ['Zend\Loader\StandardAutoloader ' => ['namespaces ' => [
26
- __NAMESPACE__ => __DIR__ . ' /src/ ' . __NAMESPACE__ ,
26
+ __NAMESPACE__ => __DIR__ ,
27
27
]]];
28
28
}
29
29
@@ -34,7 +34,7 @@ public function getAutoloaderConfig()
34
34
*/
35
35
public function getConfig ()
36
36
{
37
- return include __DIR__ . '/config/module.config.php ' ;
37
+ return include __DIR__ . '/../ config/module.config.php ' ;
38
38
}
39
39
40
40
/**
You can’t perform that action at this time.
0 commit comments