PHPackages                             grantjbutler/pippin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. grantjbutler/pippin

ActiveLibrary[Payment Processing](/categories/payments)

grantjbutler/pippin
===================

Laravel Package for handling PayPal IPNs.

0.7(5y ago)21171[3 PRs](https://github.com/grantjbutler/pippin/pulls)MITPHPPHP &gt;=7.1

Since Mar 23Pushed 3y ago2 watchersCompare

[ Source](https://github.com/grantjbutler/pippin)[ Packagist](https://packagist.org/packages/grantjbutler/pippin)[ RSS](/packages/grantjbutler-pippin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)Dependencies (1)Versions (14)Used By (0)

Pippin
======

[](#pippin)

Pippin is a library for handling [PayPal IPNs](https://developer.paypal.com/docs/api-basics/notifications/ipn/) in Laravel.

Usage
-----

[](#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.
  }

}
```

2. Access data about the IPN to [validate the notification](https://developer.paypal.com/docs/api-basics/notifications/ipn/IPNIntro/#a-sample-ipn-message-and-response) 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();
  }

}
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~179 days

Recently: every ~355 days

Total

10

Last Release

2081d ago

PHP version history (3 changes)0.1PHP &gt;=5.5.9

0.6PHP &gt;=7.0

0.7PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/267036770672638c3feeb07ef4894ad300e107e9e2ef6cab38c6b92561b3a0fb?d=identicon)[grantjbutler](/maintainers/grantjbutler)

---

Top Contributors

[![grantjbutler](https://avatars.githubusercontent.com/u/526054?v=4)](https://github.com/grantjbutler "grantjbutler (51 commits)")

---

Tags

laravelpaypalipn

### Embed Badge

![Health badge](/badges/grantjbutler-pippin/health.svg)

```
[![Health](https://phpackages.com/badges/grantjbutler-pippin/health.svg)](https://phpackages.com/packages/grantjbutler-pippin)
```

###  Alternatives

[amsgames/laravel-shop

Package set to provide shop or e-commerce functionality (such as CART, ORDERS, TRANSACTIONS and ITEMS) to Laravel for customizable builds.

4845.9k](/packages/amsgames-laravel-shop)[logicalgrape/paypal-ipn-laravel

A PayPal IPN client for Laravel.

3616.2k](/packages/logicalgrape-paypal-ipn-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
