pleets/laravel-paypal

Paypal Integrations

v0.4.0 2021-02-03 21:16 UTC

This package is auto-updated.

Last update: 2024-04-12 08:26:03 UTC


README

68747470733a2f2f626c6f672e706c656574732e6f72672f696d672f61727469636c65732f6c61726176656c2d70617970616c2d69636f6e2e706e67

Build Status Code Quality Bugs Code Coverage

Laravel integrator for PayPal solutions. Actually this library supports the following solutions:

1. Requirements

You need to make sure your server meets the following requirements.

  • PHP >= 7.4, PHP >= 8.0
  • Laravel 7.x, 8.x

2. Installation

Use following command to install this library:

composer require pleets/laravel-paypal

Add the service provider to your providers[] array in config/app.php file like:

\Pleets\LaravelPayPal\LaravelPaypalProvider::class

Finally, publish the vendor files.

php artisan vendor:publish --tag="laravel-paypal"

3. Usage

3.1 Live and Sandbox environments

Set up first API credentials for sandbox with the following env vars.

PAYPAL_SANDBOX_CLIENT_ID=
PAYPAL_SANDBOX_SECRET=

For live environment set up the following.

PAYPAL_LIVE_CLIENT_ID=
PAYPAL_LIVE_SECRET=

You can choose your current environment with the following.

PAYPAL_ENVIRONMENT=sandbox

The only valid values for this are sandbox and live.

3.2 Checkout

Activate paypal checkout with the following env var.

PAYPAL_CHECKOUT_ACTIVATED=true

Add the PayPal SDK to your blade templates as follows

@include('laravel-paypal::checkout.sdk')

💡 You don't have to be worried about when to include this SDK. The component checks for PAYPAL_CHECKOUT_ACTIVATED and then include the JavaScript SDK in case the value were true.

Then you can add the Smart Payment Button like this

@include('laravel-paypal::checkout.button')

⚠️ Finally, after the code of this button add the javascript code to handle it. This JS file is not intended to be used for production. It is just an example about how to handle the PayPal button.

<script src="{{ asset('js/paypal/checkout.js') }}" defer></script>

The checkout.js file contains values related to the purchase amount and purchase behaviour. For other values you can check the official documentation.

3.3 Subscriptions

Activate paypal subscriptions with the following en var.

PAYPAL_SUBSCRIPTION_ACTIVATED=true

You can interact with subscriptions Api through this PayPal SDK. Add the service provider to your providers[] array in config/app.php file like:

Pleets\LaravelPayPal\Providers\PayPalServiceProvider::class

Add the PayPal SDK to your blade templates as follows

@include('laravel-paypal::subscriptions.sdk')

💡 You don't have to be worried about when to include this SDK. The component checks for PAYPAL_SUBSCRIPTION_ACTIVATED and then include the JavaScript SDK in case the value were true.

Then you can add the Smart Payment Button like this

@include('laravel-paypal::subscriptions.button')

⚠️ Finally, after the code of this button add the javascript code to handle it. This JS file is not intended to be used for production. It is just an example about how to handle the PayPal button.

<script src="{{ asset('js/paypal/subscriptions.js') }}" defer></script>

The subscriptions.js file contains values related to creating subscriptions and purchase behaviour. For other values you can check the official documentation.

4. Mocking

If you want to mock the PayPal Service for testing purposes, you need to overwrite the paypal testing configuration. You must create a testing.php file inside config/paypal folder and set up a specific handler like this.

'handler' => [
    'class' => PaymentGateway\PayPalApiMock\PayPalApiMock::class,
]

Feel free to use your own paypal mock, or you can use this PayPal Api Mock.

Finally, you should set up the following in your testing environment.

PAYPAL_HANDLER_ENABLED=true