Skip to content

Commit a08fbb6

Browse files
committed
Corrected the path to the config file
1 parent 4ca9fe6 commit a08fbb6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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

src/Providers/ServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)