toby/config/google-calendar.php
Adrian Hopek 7aa9a52f8c test
2022-03-08 14:32:46 +01:00

15 lines
390 B
PHP

<?php
declare(strict_types=1);
return [
"default_auth_profile" => env("GOOGLE_CALENDAR_AUTH_PROFILE", "service_account"),
"auth_profiles" => [
"service_account" => [
"credentials_json" => base_path("google-credentials.json"),
],
],
"calendar_id" => env("GOOGLE_CALENDAR_ID"),
"user_to_impersonate" => env("GOOGLE_CALENDAR_IMPERSONATE"),
];