Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.66 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.66 KB

Laravel Vorensys API Integration

StyleCI Latest Version on Packagist Build Status Total Downloads

A Laravel 5 package to integrate with Vorensys API.

Installation

You can install the package via composer:

composer require lettingbox/vorensys

Usage

$vorensys = new Vorensys($client)
    ->setApiKey('KEY')
    ->setId('CUST_ID')
    ->setUsername('USERNAME')
    ->setPassword('PASSWORD');
$results = $vorensys->submit(new Application('Mr.', 'John', 'Doe', 'human@world.com'));

$vorensys_application_id = $results['id'];
$vorensys_application_form_url = $result['url']; 

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@lettingbox.co.uk instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.