xinax / laravel-latch by shaggyz

Laravel wrapper for Latch SDK (Second security layer).
14
1
2
Package Data
Maintainer Username: shaggyz
Maintainer Contact: n@xinax.net (Nicolás Daniel Palumbo)
Package Create Date: 2014-06-30
Package Last Update: 2014-07-01
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:16:46
Package Statistics
Total Downloads: 14
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel Latch

Laravel package for Latch SDK.

More info about Latch: https://latch.elevenpaths.com/ Official Latch php SDK: https://github.com/ElevenPaths/latch-sdk-php

Install

This package requires Laravel 4.1.*+

  • Add repository to composer.json:
    "xinax/laravel-latch": "dev-master"
  • Update composer:
    composer update
  • Register the service provider in app.php
    'Xinax\LaravelLatch\LaravelLatchServiceProvider',

Configuration

  • Publish configuration file:
    php artisan config:publish xinax/laravel-latch
  • Set application ID and secret in:
    app/config/packages/xinax/laravel-latch/config.php

Usage

All original method names were kept. Refer to original readme for updated documentation.

Pair register

    $accountID = LaravelLatch::pair($pairCode);

Latch status check

    try{
        LaravelLatch::status($accountID);
    } catch (Xinax\LaravelLatch\Exceptions\ClosedLatchException $e){
        // ... latch protection logic ...
    } catch (Xinax\LaravelLatch\Exceptions\LatchErrorException $e){ 
        // ... crisis logic (depends of your security policy) ...
    }

Unpair

    LaravelLatch::unpair($accountID);