cviebrock / laravel-mangopay by cviebrock

Laravel/Lumen wrapper for the office Mangopay SDK library
67,263
19
4
Package Data
Maintainer Username: cviebrock
Maintainer Contact: colin@viebrock.ca (Colin Viebrock)
Package Create Date: 2016-04-13
Package Last Update: 2022-08-09
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:09:47
Package Statistics
Total Downloads: 67,263
Monthly Downloads: 261
Daily Downloads: 11
Total Stars: 19
Total Watchers: 4
Total Forks: 8
Total Open Issues: 0

Laravel-Mangopay Integration

This package makes it easier (hopefully!) to integrate the official Mangopay SDK into your Laravel and Lumen applications.

Build Status Total Downloads Latest Stable Version Latest Unstable Version License


Installation

Installation is done via Composer:

composer require cviebrock/laravel-mangopay

Laravel

After updating composer, add the service provider to the providers array in config/app.php:

'providers' => [
    ...
    Cviebrock\LaravelMangopay\ServiceProvider::class,
    ...
];

Publish the package config to your application and generate the required temporary directories with the following artisan commands:

php artisan vendor:publish --provider="Cviebrock\LaravelMangopay\ServiceProvider"
php artisan mangopay:mkdir  

Lumen

For Lumen, copy the configuration file to your config folder and enable everything in bootstrap/app.php:

$app->configure('mangopay');

$app->register(Cviebrock\LaravelMangopay\ServiceProvider::class);

Generate the required temporary directories with the following artisan command:

php artisan mangopay:mkdir  

Configuration

This package supports authentication configuration through the services configuration file located in config/services.php. Add the following block to that file, and set the appropriate values in your .env file:

  'mangopay' => [
      'env'    => env('MANGOPAY_ENV', 'sandbox'),  // or "production"
      'key'    => env('MANGOPAY_KEY'),             // your Mangopay client ID
      'secret' => env('MANGOPAY_SECRET'),          // your Mangopay client password
  ],

The configuration file you can publish to config/mangopay.php provides additional properties that can be passed to the MangopayAPI object when it is instantiated. In most cases, you won't need to change anything here, so you can choose to not publish this configuration, or have it simply return an empty array.

If you do use this file, see the SDK documentation for the various properties that can be set (basically any public property on the MangoPay\Libraries\Configuration class).

Usage

All this package really does is make instantiating the MangopayAPI easy by putting the configuration into Laravel/Lumen's config system.

Using it is now as easy as injecting Mangopay into your controller, and then using it the same way you would use the MangopayAPI class:

class MyController extends Illuminate\Routing\Controller
{

    /**
     * @var \MangoPay\MangoPayApi
     */
    private $mangopay;
    
    public function __construct(\MangoPay\MangoPayApi $mangopay) {
        $this->mangopay = $mangopay;
    }

    public function doStuff($someId)
    {
        // get some user by id
        $john = $this->mangopay->Users->Get($someId);

        // change and update some of his data
        $john->LastName .= " - CHANGED";
        $this->mangopay->Users->Update($john);

        // get his bank accounts
        $pagination = new MangoPay\Pagination(1, 10); // get 1st page, 10 items per page
        $accounts = $this->mangopay->Users->GetBankAccounts($john->Id, $pagination);

        // etc.
    }
}

Bugs, Suggestions and Contributions

Thanks to everyone who has contributed to this project!

Please use Github for reporting bugs, and making comments or suggestions.

See CONTRIBUTING.md for how to contribute changes.

Copyright and License

laravel-mangopay was written by Colin Viebrock and released under the MIT License. See LICENSE.md file for details.

Copyright (c) 2016 Colin Viebrock