wawagit / mangopay-symfony-wrapper
Mongopay API Wrapper to integrate Mongopay into symfony2 project
Installs: 2 336
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.3.3
This package is not auto-updated.
Last update: 2025-05-20 05:02:50 UTC
README
Mongopay API Wrapper to integrate Mongopay into symfony2 project
To use this wrapper:
1 - Add to your composer.json
"mangopay/php-sdk-v2": "1.4.*",
"wawagit/mangopay-symfony-wrapper": "dev-master"
2 - You can use autoloader service of symfony to load MangoPay API:
Edit app/autoload.php
$loader->add('MangoPay\\MangoPayApi', __DIR__.'/../vendor/wawagit/mangopay-symfony-wrapper/lib');
And then use API like that:
// At the beginning of your php file
use MangoPay\MangoPayApi;
$api = new MangoPayApi();