alexcode/laravel-sumup

Laravel 5.6 integration for the Sumup PHP SDK.

v0.0.6 2018-05-01 10:04 UTC

This package is not auto-updated.

Last update: 2024-10-13 05:33:58 UTC


README

Install via composer

composer require alexcode/laravel-sumup

Add service provider ( Laravel 5.4 or below )

Add the service provider to the providers array in the config/app.php config file as follows:

'providers' => [

    ...

    Alexcode\Sumup\Laravel\LaravelServiceProvider::class,
]

Publish the config

Run the following command to publish the package config file:

php artisan vendor:publish --provider="Alexcode\Sumup\Laravel\LaravelServiceProvider::class"

You should now have a config/sumup.php file that allows you to configure the basics of this package.

Add the .env vars

Add SUMUP_CLIENT_ID and SUMUP_SECRET in your .env. You will find the values in https://me.sumup.com/developers

More doc on the Sumup-php lib