You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
<?php |
|
|
|
$config = [ |
|
'components' => [ |
|
'view' => [ |
|
'theme' => [ |
|
'basePath' => '@webroot/themes/sport', |
|
'baseUrl' => '@web/themes/sport', |
|
'pathMap' => [ |
|
'@frontend/views' => '@webroot/themes/sport', |
|
'@frontend/widgets' => '@webroot/themes/sport/widgets', |
|
], |
|
], |
|
], |
|
|
|
'authClientCollection' => [ |
|
'class' => 'yii\authclient\Collection', |
|
'clients' => [ |
|
'yandex' => [ |
|
'class' => 'yii\authclient\clients\Yandex', |
|
'clientId' => '', |
|
'clientSecret' => '', |
|
], |
|
'google' => [ |
|
'class' => 'yii\authclient\clients\Google', |
|
'clientId' => '', |
|
'clientSecret' => '', |
|
], |
|
'facebook' => [ |
|
'class' => 'yii\authclient\clients\Facebook', |
|
'clientId' => '', |
|
'clientSecret' => '', |
|
], |
|
'vk' => [ |
|
'class' => 'yii\authclient\clients\VKontakte', |
|
'clientId' => '', |
|
'clientSecret' => '', |
|
], |
|
], |
|
] |
|
], |
|
]; |
|
|
|
if (!YII_ENV_TEST) { |
|
// configuration adjustments for 'dev' environment |
|
$config['bootstrap'][] = 'debug'; |
|
$config['modules']['debug'] = [ |
|
'class' => 'yii\debug\Module', |
|
'allowedIPs' => ['*'], |
|
]; |
|
|
|
$config['bootstrap'][] = 'gii'; |
|
$config['modules']['gii'] = [ |
|
'class' => 'yii\gii\Module', |
|
'allowedIPs' => ['*'], |
|
]; |
|
} |
|
|
|
return $config;
|
|
|