alenkalac / omnipay-paypal-checkout-v2
Omnipay support for PayPal checkout v2 api due to v1 being deprecated by PayPal
Installs: 5 539
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- omnipay/common: ^3
- omnipay/paypal: ^3.0
README
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements PayPal support for Omnipay.
Installation
Omnipay is installed via Composer. To install, simply require league/omnipay and omnipay/paypal with Composer:
composer require league/omnipay alenkalac/omnipay-paypal-checkout-v2
Basic Usage The following gateways are provided by this package:
Loading in the Gateway
Omnipay::create("\Omnipay\PayPalCV2\RestV2Gateway");
In addition to the above - you also get the omnipay/paypal Gateways
- PayPal_Express (PayPal Express Checkout)
- PayPal_ExpressInContext (PayPal Express In-Context Checkout)
- PayPal_Pro (PayPal Website Payments Pro)
- PayPal_Rest (Paypal Rest API)
For general usage instructions, please see the main Omnipay repository.