arturishe21 / laravel-liqpay
LiqPay for Laravel
1.04
2025-03-13 17:01 UTC
Requires
- guzzlehttp/guzzle: ^7.8
- nesbot/carbon: ^2.16
Requires (Dev)
- symfony/var-dumper: ^6.0
This package is not auto-updated.
Last update: 2025-03-13 17:02:06 UTC
README
A Laravel package for the LiqPay PHP SDK.
Instalation
composer require arturishe21/laravel-liqpay
Add a ServiceProvider to your providers array in config/app.php
:
'providers' => [ //other things here Arturishe21\LiqPay\LiqPayServiceProvider::class, ];
Add the facade to the facades array:
'aliases' => [ //other things here 'LiqPay' => Arturishe21\LiqPay\Facades\LiqPay::class, ];
Finally, publish the configuration files:
php artisan vendor:publish --provider="Arturishe21\LiqPay\LiqPayServiceProvider"
Configuration
Please set your API: LIQPAY_PUBLIC
and LIQPAY_PRIVATE
in the .env
file