2017 © Pedro Peláez
 

library pippin

Laravel Package for handling PayPal IPNs.

image

grantjbutler/pippin

Laravel Package for handling PayPal IPNs.

  • Tuesday, September 26, 2017
  • by grantjbutler
  • Repository
  • 2 Watchers
  • 0 Stars
  • 56 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 3 Open issues
  • 9 Versions
  • 0 % Grown

The README.md

Pippin

Pippin is a library for handling PayPal IPNs in Laravel., (*1)

Usage

  1. Type-hint the request in your route handler to opt-in to IPN verification:, (*2)

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

    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();
    }
    
    }
    

The Versions

26/09 2017

dev-master

9999999-dev

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

24/05 2017

0.5

0.5.0.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

06/10 2016

0.4.2

0.4.2.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

05/10 2016

0.4.1

0.4.1.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

05/10 2016

0.4

0.4.0.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

30/05 2016

0.3.1

0.3.1.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

30/05 2016

0.3

0.3.0.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

11/05 2016

0.2

0.2.0.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn

23/03 2016

0.1

0.1.0.0

Laravel Package for handling PayPal IPNs.

  Sources   Download

MIT

The Requires

 

by Grant J. Butler

laravel paypal ipn