<?php

//// ---------------------------------------------
//// Google API Client Credentials
//// ---------------------------------------------
$google_client_id = "[your client id]";
$google_client_secret = "[your client secret]";
//// ---------------------------------------------

//// ---------------------------------------------
//// Paths to your jetGoogleAuth installation (this folder)
//// ---------------------------------------------
$jetGoogleAuth_WebPath = "https://yourdomain.com/path/to/jetGoogleAuth"; // <--
$jetGoogleAuth_FilePath = "/your/root/path/to/jetGoogleAuth"; // <--
$jetGoogleAuth_RelPath = "relative/path/to/jetGoogleAuth"; // <--
// path to your client's autoload within the jetGoogleAuth folder, if changed:
$jetGoogleAuth_AutoloadPath = "google-api-php-client/vendor/autoload.php"; // <--
//// ---------------------------------------------

$r = new stdClass();
//// ---------------------------------------------
//// Configure database credentials
//// ---------------------------------------------
$r->Host = "your.database.url"; // <--
$r->Database = "database_name"; // <--
$r->Username = "database_username"; // <--
$r->Password = "database_password"; // <--
//// ---------------------------------------------
$jetGoogleAuth_DatabaseCredentials = $r;

?>