2017 © Pedro Peláez
 

library osfi-client

Client to consume the OSFI Api

image

abrutus/osfi-client

Client to consume the OSFI Api

  • Monday, April 20, 2015
  • by abrutus
  • Repository
  • 1 Watchers
  • 1 Stars
  • 192 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

OSFI Client

PHP client to consume the OSFI Rest Api., (*1)

Installation

Require the package in your composer.json file., (*2)

"require": {
    "abrutus/osfi-client": "dev-master"
},

Sample usage

<?php
require_once "vendor/autoload.php";
$client = new Osfi\Client;
$match_result = $client->matchName("Al Kiaida");
if($match_result->count > 0) {
    // We have a match
    echo "Match on:" . print_r($match_result->entities, 1);
}

The Versions

20/04 2015

dev-master

9999999-dev

Client to consume the OSFI Api

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.0