File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.7.1] - 2018-05-16
8
+
9
+ ### Fixed
10
+
11
+ * Corrected the path to the config file
12
+
7
13
## [ 0.7.0] - 2018-05-11
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ class ServiceProvider extends BaseServiceProvider
26
26
public function boot ()
27
27
{
28
28
$ this ->publishes ([
29
- dirname (__DIR__ ).'/config/ ' => config_path (),
29
+ dirname (__DIR__ , 2 ).'/config/ ' => config_path (),
30
30
], 'config ' );
31
31
}
32
32
33
33
public function register ()
34
34
{
35
35
$ this ->mergeConfigFrom (
36
- dirname (__DIR__ ).'/config/jsonapi.php ' ,
36
+ dirname (__DIR__ , 2 ).'/config/jsonapi.php ' ,
37
37
'jsonapi '
38
38
);
39
39
You can’t perform that action at this time.
0 commit comments