BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
dcblogdev
/
laravel-xero
/
config
📤 Upload
📝 New File
📁 New Folder
Close
Editing: xero.php
<?php declare(strict_types=1); return [ /* * set the client id */ 'clientId' => env('XERO_CLIENT_ID'), /* * set the client secret */ 'clientSecret' => env('XERO_CLIENT_SECRET'), /* * Set the url to trigger the oauth process */ 'redirectUri' => env('XERO_REDIRECT_URL'), /* * Set the url to redirecto once authenticated; */ 'landingUri' => env('XERO_LANDING_URL', '/'), /** * Set access token, when set will bypass the oauth2 process */ 'accessToken' => env('XERO_ACCESS_TOKEN', ''), /** * Set webhook token */ 'webhookKey' => env('XERO_WEBHOOK_KEY', ''), /** * Set the scopes */ 'scopes' => env('XERO_SCOPES', 'openid email profile offline_access accounting.settings accounting.transactions accounting.contacts'), /** * Encrypt tokens in database? */ 'encrypt' => env('XERO_ENCRYPT', false), ];
Save
Cancel