shifft/shifftapi

This package is abandoned and no longer maintained. No replacement package was suggested.

Package to communicate with the ShifftAPI

This package has no released version yet, and little information is available.


README

What is this?

This package allows communication between Laravel and the (closed) ShifftAPI, found at api.shifft.com.

Getting Started

To get started, require the package with composer require shifft/shifftapi and publish the configfile with php artisan vendor:publish --tag=config

Please modify the config/shifftapi.php to match your configuration.

Usage

Have the following code at the top of your file

use ShifftAPI;

And use it as such:

$checkValidity = ShifftAPI::iban($iban);
$addressInfo = ShifftAPI::address($postal, $number, $addition);