grantjbutler/pippin

Laravel Package for handling PayPal IPNs.
117 2
Install
composer require grantjbutler/pippin
Latest Version:0.7
PHP:>=7.1
License:MIT
Last Updated:Feb 1, 2023
Links: GitHub  ·  Packagist
Maintainer: grantjbutler

Pippin

Pippin is a library for handling PayPal IPNs in Laravel.

Usage

  1. Type-hint the request in your route handler to opt-in to IPN verification:
use Pippin\IPNRequest;

class MyController extends Controller {
  
  public function ipn(IPNRequest $request) {
    // Do something.
  }
  
}
  1. Access data about the IPN to validate the notification and process it for your application.
use Pippin\IPNRequest;

class MyController extends Controller {
  
  public function ipn(IPNRequest $request) {
    $ipn = $request->getIPN();
    // $ipn is an instance of Pippin\IPN.
    $payerEmail = $ipn->getPayerEmail();

    $transaction = $ipn->getTransactions()[0];
    $receiverEmail = $transaction->getReceiver();
  }
  
}