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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.7.1] - 2018-05-16
8+
9+ ### Fixed
10+
11+ * Corrected the path to the config file
12+
713## [ 0.7.0] - 2018-05-11
814
915### Changed
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ class ServiceProvider extends BaseServiceProvider
2626 public function boot ()
2727 {
2828 $ this ->publishes ([
29- dirname (__DIR__ ).'/config/ ' => config_path (),
29+ dirname (__DIR__ , 2 ).'/config/ ' => config_path (),
3030 ], 'config ' );
3131 }
3232
3333 public function register ()
3434 {
3535 $ this ->mergeConfigFrom (
36- dirname (__DIR__ ).'/config/jsonapi.php ' ,
36+ dirname (__DIR__ , 2 ).'/config/jsonapi.php ' ,
3737 'jsonapi '
3838 );
3939
You can’t perform that action at this time.
0 commit comments