dedo/laravel-paysera

There is no license information available for the latest version (0.0.3) of this package.

Paysera laravel

0.0.3 2022-07-25 19:08 UTC

This package is not auto-updated.

Last update: 2024-04-18 16:16:18 UTC


README

Package that helps to use Paysera API in laravel application.

Installation

First require package with composer:

$ composer require dedo/laravel-paysera

Then add service provider to config/app.php:

'providers' => [
    ...
    Dedo\Paysera\PayseraServiceProvider::class,
],

Facede to aliases:

'aliases' => [
    ...
    'Paysera' => Dedo\Paysera\Facades\Paysera::class,
],

And last is to publish config, migrations and view:

$ php artisan vendor:publish --provider="Dedo\Paysera\PayseraServiceProvider"