75 lines
2.8 KiB
PHP
75 lines
2.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|----------------------------------------------------------------------------
|
|
| Google application name
|
|
|----------------------------------------------------------------------------
|
|
*/
|
|
'application_name' => env('GOOGLE_APPLICATION_NAME', 'BIB-LMS'),
|
|
|
|
/*
|
|
|----------------------------------------------------------------------------
|
|
| Google OAuth 2.0 access
|
|
|----------------------------------------------------------------------------
|
|
|
|
|
| Keys for OAuth 2.0 access, see the API console at
|
|
| https://developers.google.com/console
|
|
|
|
|
*/
|
|
'client_id' => env('GOOGLE_CLIENT_ID', '775580679481-r7ehpun2tt0euhf3m5t7ov8s1hj95eal.apps.googleusercontent.com'),
|
|
'client_secret' => env('GOOGLE_CLIENT_SECRET', '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'),
|
|
'redirect_uri' => env('GOOGLE_REDIRECT', ''),
|
|
'scopes' => [\Google_Service_Sheets::DRIVE, \Google_Service_Sheets::SPREADSHEETS],
|
|
'access_type' => 'online',
|
|
'approval_prompt' => 'auto',
|
|
|
|
/*
|
|
|----------------------------------------------------------------------------
|
|
| Google developer key
|
|
|----------------------------------------------------------------------------
|
|
|
|
|
| Simple API access key, also from the API console. Ensure you get
|
|
| a Server key, and not a Browser key.
|
|
|
|
|
*/
|
|
'developer_key' => env('GOOGLE_DEVELOPER_KEY', 'AIzaSyAd1145M7z4p-2cQQzwSWK7tM-oRwk3Mi8'),
|
|
'key' => env('GOOGLE_DEVELOPER_KEY', 'AIzaSyAd1145M7z4p-2cQQzwSWK7tM-oRwk3Mi8'),
|
|
|
|
/*
|
|
|----------------------------------------------------------------------------
|
|
| Google service account
|
|
|----------------------------------------------------------------------------
|
|
|
|
|
| Set the credentials JSON's location to use assert credentials, otherwise
|
|
| app engine or compute engine will be used.
|
|
|
|
|
*/
|
|
'service' => [
|
|
/*
|
|
| Enable service account auth or not.
|
|
*/
|
|
'enable' => env('GOOGLE_SERVICE_ENABLED', true),
|
|
|
|
/*
|
|
* Path to service account json file. You can also pass the credentials as an array
|
|
* instead of a file path.
|
|
*/
|
|
'file' => env('GOOGLE_SERVICE_ACCOUNT_JSON_LOCATION', 'bibhuti-solutions-bb11cbed4301.json'),
|
|
],
|
|
|
|
/*
|
|
|----------------------------------------------------------------------------
|
|
| Additional config for the Google Client
|
|
|----------------------------------------------------------------------------
|
|
|
|
|
| Set any additional config variables supported by the Google Client
|
|
| Details can be found here:
|
|
| https://github.com/google/google-api-php-client/blob/master/src/Google/Client.php
|
|
|
|
|
| NOTE: If client id is specified here, it will get over written by the one above.
|
|
|
|
|
*/
|
|
'config' => [],
|
|
];
|