This package is no longer maintained and has been moved to https://github.com/libaro-io/miqey-client
The Secure ID Laravel Package simplifies the integration of the Secure ID functionality into your Laravel projects. Secure ID is designed to facilitate a secure login procedure by generating sign requests, managing user responses through QR codes or SMS, and seamlessly logging users into your projects.
You can install the package via composer:
composer require libaro/secure-id
Publish the config file:
php artisan vendor:publish --provider="Libaro\SecureId\SecureIdServiceProvider" --tag="config"
The content of the config file:
return [
'api_url' => env('SECURE_ID_API_URL', 'https://secureid.digitalhq.com/api/generate'),
'api_key' => env('SECURE_ID_API_KEY'),
'api_url_prefix' => env('SECURE_ID_API_URL_PREFIX', '/api/secure-id'),
'webhook_handlers' => [
\Support\Interfaces\SecureIdWebhookHandler::class,
],
];
The default WebhookHandler can be replaced by a custom handler in the config file for handling events to authenticating users.
class SecureIdWebhookHandler implements WebhookHandlerInterface
{
public function handleWebhook(string $phone, string $code): void
{
event(new SMSSignRequestReceived($code, $phone));
}
}
composer test
Please see CHANGELOG for more information what has changed recently.
If you discover any security related issues, please email tim@libaro.be instead of using the issue tracker.
Props to:
- Tim Vande Walle
- Libaro
- DigitalHQ
- https://www.laravelpackage.com
- https://laravelpackageboilerplate.com
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.