
* #2 - wip * #2 - wip * #2 - ui fixes to login page * #2 - fix * #2 - fix * #2 - add title to login page * Apply suggestions from code review Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl> * #2 - cr fix * #2 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl>
12 lines
220 B
PHP
12 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
"google" => [
|
|
"client_id" => env("GOOGLE_CLIENT_ID"),
|
|
"client_secret" => env("GOOGLE_CLIENT_SECRET"),
|
|
"redirect" => env("GOOGLE_REDIRECT"),
|
|
],
|
|
];
|