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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							662 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							662 B
						
					
					
				<?php | 
						|
 | 
						|
$config = [ | 
						|
	'components' => [ | 
						|
		'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' => '', | 
						|
				], | 
						|
			], | 
						|
		] | 
						|
	], | 
						|
]; | 
						|
 | 
						|
return $config;
 | 
						|
 |