xstech / l5-paypal
Simple Laravel 5 Paypal SDK wrapper
v1.0
2017-11-02 14:06 UTC
Requires
- php: >=7.0
- paypal/rest-api-sdk-php: ^1.12
This package is not auto-updated.
Last update: 2025-03-31 12:14:09 UTC
README
L5-Paypal is a wrapper package encapsulating Paypal REST API SDK.
Installation
-
Install package using Composer
composer require xstech/l5-paypal
-
Next, add the service provider to
app/config/app.php
in theproviders
array.
'providers' => [ XSTech\L5Paypal\L5PaypalServiceProvider::class, ]
- Add an alias to
app/config/app.php
in thealiases
array.
'aliases' => [ 'Paypal' => XSTech\L5Paypal\Facades\Paypal::class, ]
- Finally, publish package config.
php artisan vendor:publish --provider="XSTech\L5Paypal\L5PaypalServiceProvider"