deniztezcan / laravel-liqpay
LiqPay for Laravel
Installs: 980
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 5
Open Issues: 0
Language:HTML
Requires
- illuminate/support: 5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0
- nesbot/carbon: ^2.16
This package is auto-updated.
Last update: 2024-10-07 23:07:03 UTC
README
A Laravel package for the LiqPay PHP SDK.
Instalation
composer require deniztezcan/laravel-liqpay
Add a ServiceProvider to your providers array in config/app.php
:
'providers' => [ //other things here DenizTezcan\LiqPay\LiqPayServiceProvider::class, ];
Add the facade to the facades array:
'aliases' => [ //other things here 'LiqPay' => DenizTezcan\LiqPay\Facades\LiqPay::class, ];
Finally, publish the configuration files:
php artisan vendor:publish --provider="DenizTezcan\LiqPay\LiqPayServiceProvider"
Configuration
Please set your API: LIQPAY_PUBLIC
and LIQPAY_PRIVATE
in the .env
file