An unofficial SDK to work with the Soldo API
In case you're interested in using the Soldo API, please contact them so they can support you in integrating them in your existing system.
- PHP 5.5 or above
- curl extension enabled
First of all instantiate a new Soldo
object with your credentials:
require_once __DIR__ . '/vendor/autoload.php';
$soldo = new \Soldo\Soldo([
'client_id' => 'Eu97aMWTV3ta9AchozCozGn15XiX6t5x',
'client_secret' => 'msNE5I1BnSkWBHPVRJDMYqKvTKRfCS4a',
]);
-
Configuration
-
Retrieve collections
-
Retrieve resource
-
Money transfer
-
Card rules
-
Webhooks
- Composer is a prerequisite for running the tests. Install composer globally, then run
composer install
to install required files. - Create
tests/SoldoTestCredentials.php
fromtests/SoldoTestCredentials.php.dist
and edit it to add your demo environment credentials. - The tests can be executed by running this command from the root directory:
$ ./vendor/bin/phpunit