PHPackages                             andrevalentin/laravel-onfido - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. andrevalentin/laravel-onfido

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

andrevalentin/laravel-onfido
============================

A Laravel wrapper for the Onfido PHP client

v5.1.0(4y ago)4170.0k2[1 PRs](https://github.com/andrevalentin/laravel-onfido/pulls)MITPHPPHP ^7.1.3 || ^8.0CI failing

Since Aug 4Pushed 4y ago3 watchersCompare

[ Source](https://github.com/andrevalentin/laravel-onfido)[ Packagist](https://packagist.org/packages/andrevalentin/laravel-onfido)[ RSS](/packages/andrevalentin-laravel-onfido/feed)WikiDiscussions master Synced yesterday

READMEChangelog (6)Dependencies (4)Versions (10)Used By (0)

The Onfido Laravel Package
==========================

[](#the-onfido-laravel-package)

The Laravel wrapper for the Onfido PHP API Client.

Installation
------------

[](#installation)

Install using composer:

```
composer require andrevalentin/laravel-onfido

```

In app.php in your Laravel application add the Service Provider under the providers array:

```
'providers' => [
    ...,
    AndreValentin\Onfido\OnfidoServiceProvider::class,
],

```

Also add the Class Alias under the aliases array:

```
'aliases' => [
    ...,
    'Onfido'    => AndreValentin\Onfido\Facades\Onfido::class,
],

```

Add a onfido.php config file in your config directory with the following content:

```
