MangoPaySDK is a PHP client library to work with MangoPay REST API.
SDK has been written in PHP 5.5 and has no dependencies on external packages. You only have to ensure that curl and openssl extensions (that are part of standard PHP distribution) are enabled in your PHP installation.
The installation is as easy as downloading the package and storing it under any location that will be available for including by
require_once '{your-installation-dir}/MangoPaySDK/mangoPayApi.inc';
in your project (see examples below).
You can use MangoPay SDK library as a dependency in your project with Composer. A composer.json file is available in the repository and it has been referenced on packagist.
The installation with Composer is easy, reliable : Step 1 - Add the MangoPay SDK as a dependency in your composer.json file as follow :
"require": {
...
"mangopay/php-sdk-v2": "1.4.*"
},
Step 2 - Update your dependencies with Composer
you@yourhost:/path/to/project$ php composer.phar update mangopay/php-sdk-v2
The Library has been added into your dependencies and ready to be used.
MangoPaySDK is distributed under MIT license, see LICENSE file.
Tests are placed under {your-installation-dir}/tests. The /tests/suites/all.php suite runs ALL tests. You can also use any of /tests/cases/*.php to run a single test case.
Report bugs or suggest features using issue tracker at GitHub.
require_once '{your-installation-dir}/MangoPaySDK/mangoPayApi.inc';
$api = new MangoPay\MangoPayApi();
$client = $api->Clients->Create(
'your-client-id',
'your-client-name',
'[email protected]'
);
// you receive your password here, note it down and keep in secret
print($client->Passphrase);
See the example above and call $api->Clients->Create
once to get your passphrase.
Then set $api->Config->ClientId
to your MangoPay Client ID and
$api->Config->ClientPassword
to your passphrase.
You also need to set a folder path in $api->Config->TemporaryFolder
that SDK needs
to store temporary files. This path should be outside your www folder.
It could be /tmp/
or /var/tmp/
or any other location that PHP can write to.
$api->Config->BaseUrl
is set to sandbox environment by default. To enable production
environment, set it to https://api.mangopay.com
.
require_once '{your-installation-dir}/MangoPaySDK/mangoPayApi.inc';
$api = new MangoPay\MangoPayApi();
// configuration
$api->Config->ClientId = 'your-client-id';
$api->Config->ClientPassword = 'your-client-password';
$api->Config->TemporaryFolder = '/some/path/';
//$api->Config->BaseUrl = 'https://api.sandbox.mangopay.com';
// call some API methods...
$users = $api->Users->GetAll();
require_once '{your-installation-dir}/MangoPaySDK/mangoPayApi.inc';
$api = new MangoPay\MangoPayApi();
// configuration
$api->Config->ClientId = 'your-client-id';
$api->Config->ClientPassword = 'your-client-password';
$api->Config->TemporaryFolder = '/some/path/';
// get some user by id
$john = $api->Users->Get($someId);
// change and update some of his data
$john->LastName .= " - CHANGED";
$api->Users->Update($john);
// get all users (with pagination)
$pagination = new MangoPay\Pagination(1, 8); // get 1st page, 8 items per page
$users = $api->Users->GetAll($pagination);
// get his bank accounts
$pagination = new MangoPay\Pagination(2, 10); // get 2nd page, 10 items per page
$accounts = $api->Users->GetBankAccounts($john->Id, $pagination);
You can integrate MangoPay features in a Service in your Symfony project.
MangoPayService.php :
<?php
namespace Path\To\Service;
use MangoPay;
class MangoPayService
{
private $mangoPayApi;
public function __construct()
{
$this->mangoPayApi = new MangoPay\MangoPayApi();
$this->mangoPayApi->Config->ClientId = 'your-client-id';
$this->mangoPayApi->Config->ClientPassword = 'your-client-password';
$this->mangoPayApi->Config->TemporaryFolder = '/some/path/';
//$this->mangoPayApi->Config->BaseUrl = 'https://api.sandbox.mangopay.com';
}
/**
* Create MangoPay User
* @return MangoPayUser $mangoUser
*/
public function getMangoUser()
{
$mangoUser = new \MangoPay\UserNatural();
$mangoUser->PersonType = "NATURAL";
$mangoUser->FirstName = 'John';
$mangoUser->LastName = 'Doe';
$mangoUser->Birthday = 1409735187;
$mangoUser->Nationality = "FR";
$mangoUser->CountryOfResidence = "FR";
$mangoUser->Email = '[email protected]';
//Send the request
$mangoUser = $this->mangoPayApi->Users->Create($mangoUser);
return $mangoUser;
}
}