An open API service indexing awesome lists of open source software.

https://github.com/raphaelvserafim/google-authenticator

Google Authenticator PHP
https://github.com/raphaelvserafim/google-authenticator

authenticator google php

Last synced: 6 months ago
JSON representation

Google Authenticator PHP

Awesome Lists containing this project

README

          

# Google Authenticator PHP

## CONTATO














## Example of use:

```php
use Cachesistemas\GoogleAuthenticator;

include_once 'vendor/autoload.php';

$ga = new GoogleAuthenticator():
```

### create Secret
```php
$secret = $ga->createSecret();
```

### get QRCode Google Url
```php
$qrCode = $ga->getQRCodeGoogleUrl("", $secret,"");
```

### verify Code
```php
$check = $ga->verifyCode($secret, "", 2);
```