Skip to content

Commit

Permalink
Changed json path to recommend full path
Browse files Browse the repository at this point in the history
  • Loading branch information
schulzefelix committed Jun 28, 2020
1 parent 5d424b2 commit 15854f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

All Notable changes to `laravel-search-console` will be documented in this file.
## [1.5.0] - 2020-06-28
- Use full path for json account config files
- Removed files env vars

## [1.4.0] - 2020-04-12
- Add Compatibility With Laravel 7
- Drop support for Laravel 6
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ return [
],

'oauth_json' => [
'auth_config' => env('GOOGLE_AUTH_CONFIG'),
'auth_config' => storage_path('app/searchconsole/oauth-account-credentials.json'),
],

'service_account' => [
'application_credentials' => env('GOOGLE_APPLICATION_CREDENTIALS'),
'application_credentials' => storage_path('app/searchconsole/service-account-credentials.json'),
],

],
Expand All @@ -80,7 +80,7 @@ return [
*/

'cache' => [
'store' => file,
'store' => 'file',
],

/*
Expand Down
5 changes: 2 additions & 3 deletions config/search-console.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@
],

'oauth_json' => [
'auth_config' => env('GOOGLE_AUTH_CONFIG'),
'auth_config' => storage_path('app/searchconsole/oauth-account-credentials.json'),
],

'service_account' => [
'application_credentials' => env('GOOGLE_APPLICATION_CREDENTIALS'),
'application_credentials' => storage_path('app/searchconsole/service-account-credentials.json'),
],

],
Expand Down

0 comments on commit 15854f6

Please sign in to comment.