forked from wedevBr/bankly-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from wedevBr/fix/FixSettingsAndEndpointsCalls
Fix/fix settings and endpoints calls
- Loading branch information
Showing
2 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
|
||
return [ | ||
'api_url' => env('BANKLY_LOGIN_URL', 'https://api.acessobank.com.br/baas'), // Default value set to Production | ||
'login_url' => env('BANKLY_API_URL', 'https://login.acessobank.com.br'), // Defaults value set to Production | ||
'login_url' => env('BANKLY_LOGIN_URL', 'https://api.acessobank.com.br/baas'), // Default value set to Production | ||
'api_url' => env('BANKLY_API_URL', 'https://login.acessobank.com.br/connect/token'), // Defaults value set to Production | ||
'client_secret' => env('BANKLY_CLIENT_SECRET', null), // Your client secret provided by bankly staff | ||
'client_id' => env('BANKLY_CLIENT_ID', null) // Your client ID provided by bankly staff | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters