arturishe21/laravel-liqpay

LiqPay for Laravel

Maintainers

Package info

github.com/arturishe21/laravel-liqpay

Language:HTML

pkg:composer/arturishe21/laravel-liqpay

Statistics

Installs: 41

Dependents: 0

Suggesters: 0

Stars: 0

1.05 2026-03-08 09:26 UTC

This package is not auto-updated.

Last update: 2026-03-08 09:28:57 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Maintainability

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