D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
config
/
Filename :
services.php
back
Copy
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Stripe, Mailgun, SparkPost and others. This file provides a sane | default location for this type of information, allowing packages | to have a conventional place to find your various credentials. | */ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN'), 'secret' => env('MAILGUN_SECRET'), ], 'ses' => [ 'key' => env('SES_KEY'), 'secret' => env('SES_SECRET'), 'region' => env('SES_REGION', 'us-east-1'), ], 'sparkpost' => [ 'secret' => env('SPARKPOST_SECRET'), ], 'stripe' => [ 'model' => App\User::class, 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), ], 'fcm' => [ 'key' => env('FCM_SECRET_KEY') ], 'google' => [ // Our Google API credentials. 'client_id' => env('GOOGLE_CLIENT_ID'), 'client_secret' => env('GOOGLE_CLIENT_SECRET'), // The URL to redirect to after the OAuth process. 'redirect_uri' => env('GOOGLE_REDIRECT_URI'), // The URL that listens to Google webhook notifications (Part 3). 'webhook_uri' => env('GOOGLE_WEBHOOK_URI'), // Let the user know what we will be using from his Google account. 'scopes' => [ // Getting access to the user's email. \Google_Service_Oauth2::USERINFO_EMAIL, // Managing the user's calendars and events. \Google_Service_Calendar::CALENDAR, ], // Enables automatic token refresh. 'approval_prompt' => 'force', 'access_type' => 'offline', // Enables incremental scopes (useful if in the future we need access to another type of data). 'include_granted_scopes' => true, ], ];