mdsami / larazkteo
Zekteo Integration with Laravel
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Type:project
Requires
- php: 7.1.3
- illuminate/contracts: 5.6
- illuminate/support: 5.6
This package is auto-updated.
Last update: 2024-10-28 20:24:30 UTC
README
LaraZkteo is Zkteo Biometrics Technology Integration with Laravel
For Laravel 5.6 and above
Introduction
Integrate LaraZkteo in your laravel application easily with this package. This package uses Zkteo's php SDK.
License
Laravel ZKteo open-sourced software licensed under the MIT license
Getting Started
To get started add the following package to your composer.json
file using this command.
composer require mdsami/LaraZkteo
Configuring
Note: For Laravel 5.5 and above auto-discovery takes care of below configuration.
When composer installs Laravel ZKteo library successfully, register the mdsami\LaraPLaraZkteo\LaraZkteoServiceProvider
in your config/app.php
configuration file.
'providers' => [ // Other service providers... mdsami\LaraZkteo\LaraZkteoServiceProvider::class, ],
Also, add the LaraZkteo
facade to the aliases
array in your app
configuration file:
'aliases' => [ // Other aliases 'LaraZkteo' => mdsami\LaraZkteo\Facades\LaraZkteo::class, ],