1. Go to this page and download the library: Download jmluang/sso-consumer library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jmluang / sso-consumer example snippets
'resolver' => \App\Sso\AppSsoUserResolver::class,
namespace App\Sso;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Jmluang\SsoConsumer\Contracts\SsoUserResolver;
use Jmluang\SsoConsumer\Support\PhoneNormalizer;
class AppSsoUserResolver implements SsoUserResolver
{
public function findByPhone(string $phone, array $claims, Request $request): ?Authenticatable
{
// Normalize both sides so domestic ("15912340001") and international
// ("+852 91234567") tickets match local rows regardless of how the
// number was originally typed. See "Phone format" below.
$normalized = PhoneNormalizer::normalize($phone);
return AdminUser::query()->where('phone', $normalized)->first();
}
public function findByEmail(string $email, array $claims, Request $request): ?Authenticatable
{
return AdminUser::query()->where('email', $email)->first();
}
public function login(Authenticatable $user, array $claims, Request $request): void
{
Auth::guard('admin')->login($user);
$request->session()->regenerate();
// Update last_login_at, fire app-specific events, etc.
}
}