PHPackages                             logicalgrape/paypal-ipn-laravel - 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. logicalgrape/paypal-ipn-laravel

ActiveLibrary[Payment Processing](/categories/payments)

logicalgrape/paypal-ipn-laravel
===============================

A PayPal IPN client for Laravel.

1.0.1(12y ago)3416.2k25[17 issues](https://github.com/logicalgrape/paypal-ipn-laravel/issues)MITPHPPHP &gt;=5.3.0

Since Nov 13Pushed 12y ago7 watchersCompare

[ Source](https://github.com/logicalgrape/paypal-ipn-laravel)[ Packagist](https://packagist.org/packages/logicalgrape/paypal-ipn-laravel)[ RSS](/packages/logicalgrape-paypal-ipn-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (3)Used By (0)

PayPal IPN for Laravel 4
========================

[](#paypal-ipn-for-laravel-4)

This package allows for the painless creation of a PayPal IPN listener in the Laravel 4 framework.

Installation
------------

[](#installation)

PayPal IPN for Laravel can be found on [Packagist](https://packagist.org/packages/logicalgrape/paypal-ipn-laravel). The recommended way is through [composer](http://getcomposer.org).

Edit `composer.json` and add:

```
{
    "require": {
        "logicalgrape/paypal-ipn-laravel": "dev-master"
    }
}
```

And install dependencies:

```
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install
```

Usage
-----

[](#usage)

Find the `providers` key in `app/config/app.php` and register the **PayPal IPN Service Provider**.

```
'providers' => array(
    // ...

    'LogicalGrape\PayPalIpnLaravel\PayPalIpnServiceProvider',
)
```

Find the `aliases` key in `app/config/app.php` and register the **PayPal IPN Facade**.

```
'aliases' => array(
    // ...

    'IPN' => 'LogicalGrape\PayPalIpnLaravel\Facades\IPN',
)
```

Migrations
----------

[](#migrations)

Run the migrations to create the tables to hold IPN data

```
$ php artisan migrate --package logicalgrape/paypal-ipn-laravel
```

Configuration
-------------

[](#configuration)

Publish and edit the configuration file

```
$ php artisan config:publish logicalgrape/paypal-ipn-laravel
```

Example
-------

[](#example)

Create the controller PayPal will POST to

```
$ php artisan controller:make IpnController --only=store
```

Open the newly created controller and add the following to the store action

```
$order = IPN::getOrder();
```

Edit `app/routes.php` and add:

```
Route::post('ipn', array('uses' => 'IpnController@store', 'as' => 'ipn'));
```

Resources
---------

[](#resources)

To help with IPN testing, PayPal provides the [PayPal IPN Simulator](https://developer.paypal.com/webapps/developer/applications/ipn_simulator).

Support
-------

[](#support)

[Please open an issue on GitHub](https://github.com/logicalgrape/paypal-ipn-laravel/issues)

License
-------

[](#license)

GeocoderLaravel is released under the MIT License. See the bundled [LICENSE](https://github.com/logicalgrape/paypal-ipn-laravel/blob/master/LICENSE)file for details.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity35

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90% 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 ~57 days

Total

2

Last Release

4506d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e8a407c42dfca32b0ec7e8c693b4d8432e0bdb8443a62e844d961b1090a26b31?d=identicon)[croemmich](/maintainers/croemmich)

---

Top Contributors

[![croemmich](https://avatars.githubusercontent.com/u/498811?v=4)](https://github.com/croemmich "croemmich (9 commits)")[![ragingdave](https://avatars.githubusercontent.com/u/1168344?v=4)](https://github.com/ragingdave "ragingdave (1 commits)")

---

Tags

laravelpaypalipn

### Embed Badge

![Health badge](/badges/logicalgrape-paypal-ipn-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/logicalgrape-paypal-ipn-laravel/health.svg)](https://phpackages.com/packages/logicalgrape-paypal-ipn-laravel)
```

###  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)

PHPackages © 2026

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