phycom / auth
Authentication module for Phycom platform
1.1.2
2022-08-19 07:46 UTC
Requires
- php: >=8.0
- phycom/base: >=1.1
This package is auto-updated.
Last update: 2025-03-19 13:13:22 UTC
README
Authentication module for Phycom platform
Contains a collection of 3rd party authentication methods that can be easily added to phycom website.
List of methods provided:
Installation
Install using composer:
composer install phycom/auth
How to use the module
- Add module config your site, see example here:
<?php
return [
'modules' => [
'auth' => [
'class' => \Phycom\Auth\Module::class,
'methods' => [
'google' => [
'class' => \Phycom\Auth\Methods\Google\Module::class,
'clientId' => '<your google client ID here>'
],
'facebook' => [
'class' => \Phycom\Auth\Methods\Facebook\Module::class,
'appId' => '<your facebook ap id here>'
]
]
]
]
];
- Add auth. methods to your login form like this:
foreach (Yii::$app->getModule('auth')->getMethods() as $method) {
echo $method->render();
}