Skip to content

Commit

Permalink
Corrected the path to the config file
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed May 16, 2018
1 parent 4ca9fe6 commit a08fbb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.7.1] - 2018-05-16

### Fixed

* Corrected the path to the config file

## [0.7.0] - 2018-05-11

### Changed
Expand Down
4 changes: 2 additions & 2 deletions src/Providers/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ class ServiceProvider extends BaseServiceProvider
public function boot()
{
$this->publishes([
dirname(__DIR__).'/config/' => config_path(),
dirname(__DIR__, 2).'/config/' => config_path(),
], 'config');
}

public function register()
{
$this->mergeConfigFrom(
dirname(__DIR__).'/config/jsonapi.php',
dirname(__DIR__, 2).'/config/jsonapi.php',
'jsonapi'
);

Expand Down

0 comments on commit a08fbb6

Please sign in to comment.