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
Requires
- hashids/hashids: ^4.0
This package is not auto-updated.
Last update: 2025-05-15 21:18:37 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"