public function actionGoogle() {
require_once Yii::$app->basePath.'\google\GoogleAuthenticator.php';
$ga = new GoogleAuthenticator;
return $this->render('google', [
'ga' => $ga
]);
//указываете пространство имён
use components\GoogleAuthenticator;
//используете
$ga = new GoogleAuthenticator;