Download the PHP package ngugijames/metropol without Composer
On this page you can find all versions of the php package ngugijames/metropol. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ngugijames/metropol
More information about ngugijames/metropol
Files in ngugijames/metropol
Package metropol
Short Description Metropol CRB(Credit Reference Bureau) API wrapper
License MIT
Informations about the package metropol
Metropol CRB
Warning: Abandoned. I no longer have the time to manage this repository. It is likely the Metropol API has changed.
[![Latest Stable Version](https://poser.pugx.org/ngugijames/metropol/v/stable)](https://packagist.org/packages/ngugijames/metropol) [![Daily Downloads](https://poser.pugx.org/ngugijames/metropol/d/daily)](https://packagist.org/packages/ngugijames/metropol) [![License](https://poser.pugx.org/ngugijames/metropol/license)](https://packagist.org/packages/ngugijames/metropol)
About Metropol-CRB
Metropol CRB(Credit Reference Bureau) API wrapper. This is a simple PHP client to communicate with the Metropol CRB API.
Installation
composer require ngugijames/metropol
composer install
Quick Example
<?php
//get the composer autoloader, if necessary
require_once '../vendor/autoload.php';
use Ngugi\Metropol\Metropol;
$metropolPublicKey='dshdhggdid';
$metropolPrivateKey='UYGSYGA';
$metropol=new Metropol($metropolPublicKey,$metropolPrivateKey);
//verify ID number
$result=$metropol->identityVerification($id_number);
//check deliquency status of an ID number for a loan amount
$result=$metropol->deliquencyStatus($id_number, $loan_amount);
//check credit Info of an ID number for a loan amount
$result=$metropol->creditInfo($id_number, $loan_amount);
//check consumer score of ID number
$result=$metropol->consumerScore($id_number);
All methods return an array. Check the docs folder for sample results
Detailed Example
You can override all the options used when calling the api by calling the setter methods on the Metropol object
<?php
//get the composer autoloader, if necessary
require_once '../vendor/autoload.php';
use Ngugi\Metropol\Metropol;
$metropolPublicKey='dshdhggdid';
$metropolPrivateKey='UYGSYGA';
$metropol=new Metropol($metropolPublicKey,$metropolPrivateKey);
//override all options
$metropol=$metropol->withVersion('2.1')
->withPort(443)
->withPublicApiKey('NEW_PUB-KEY')
->withPrivateKey('NEW-PRIVATE-KEY');
//verify ID number
$result=$metropol->identityVerification($id_number);
//check deliquency status of an ID number for a loan amount
$result=$metropol->deliquencyStatus($id_number, $loan_amount);
//check credit Info of an ID number for a loan amount
$result=$metropol->creditInfo($id_number, $loan_amount);
//check consumer score of ID number
$result=$metropol->consumerScore($id_number);
All methods return an array. Check the docs folder for sample results
All versions of metropol with dependencies
guzzlehttp/guzzle Version ^6.3
nesbot/carbon Version ^1.22
psr/log Version ^1.0