PHPackages                             cloudcreativity/laravel-stripe - 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. cloudcreativity/laravel-stripe

ActiveLibrary[Payment Processing](/categories/payments)

cloudcreativity/laravel-stripe
==============================

Laravel integration for Stripe, including Stripe Connect.

v0.8.0(8mo ago)4112.4k↓13.5%11[3 issues](https://github.com/cloudcreativity/laravel-stripe/issues)[1 PRs](https://github.com/cloudcreativity/laravel-stripe/pulls)Apache-2.0PHPPHP ^8.2CI passing

Since Aug 12Pushed 8mo ago2 watchersCompare

[ Source](https://github.com/cloudcreativity/laravel-stripe)[ Packagist](https://packagist.org/packages/cloudcreativity/laravel-stripe)[ RSS](/packages/cloudcreativity-laravel-stripe/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependencies (14)Versions (14)Used By (0)

Laravel Stripe
==============

[](#laravel-stripe)

Status
------

[](#status)

**This package no longer has active support beyond upgrading to the latest Laravel version. Please note however, that we cannot guarantee that we will be able to maintain support for all Laravel versions going forward. The package is also on an old version of the Stripe SDK which limits its usefulness.**

Unfortunately due to only having limited time for open source work, we are unable to maintain this package to the standard we would like. We would however accept pull requests from anyone who does want to contribute upgrades or new features.

However, if you are starting a new project it is probably best not to use this package.

Overview
--------

[](#overview)

A Laravel integration for [Stripe's official PHP package.](https://github.com/stripe/stripe-php)

This package allows you to fluently query the Stripe API via repositories. Repositories can be for either your application's Stripe account, or connected Stripe accounts.

### Example

[](#example)

```
// For your application's account:
/** @var \Stripe\PaymentIntent $intent */
$intent = Stripe::account()
    ->paymentIntents()
    ->create('gbp', 1500);

// For a Stripe Connect account model:
$account->stripe()->paymentIntents()->create('gbp', 999);
```

### What About Cashier?

[](#what-about-cashier)

This package is meant to be used *in addition* to [Laravel Cashier](https://laravel.com/docs/billing), not instead of it.

Our primary use-case is Stripe Connect. We needed a package that provided really easy access to data from connected Stripe accounts. We wanted to make interacting with the entire Stripe API fluent, easily testable and highly debuggable.

In contrast, Cashier does not provide full Stripe API coverage, and provides [no support for Stripe Connect.](https://github.com/laravel/cashier/pull/519)So if you need to do more than just Cashier's billing functionality, install this package as well.

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

[](#installation)

Installation is via Composer. Refer to the [Installation Guide](./docs/installation.md) for instructions.

Documentation
-------------

[](#documentation)

1. [Installation](./docs/installation.md)
2. [Accessing the Stripe API](./docs/repositories.md)
3. [Receiving Webhooks](./docs/webhooks.md)
4. [Stripe Connect](./docs/connect.md)
5. [Artisan Commands](./docs/console.md)
6. [Testing](./docs/testing.md)

Version Compatibility
---------------------

[](#version-compatibility)

The following table shows which version to install. We have provided the Stripe API version that we developed against as guide. You may find the package works with older versions of the API.

LaravelStripe PHPStripe APILaravel-StripeCashier`12.x``^16.2``>=2020-03-02``0.8.x``^15.6``11.x``^16.2``>=2020-03-02``0.8.x``^15.6``10.x``^7.52``>=2020-03-02``0.7.x``^14.8``9.x``^7.52``>=2020-03-02``0.6.x``^12.3``8.x``^7.52``>=2020-03-02``0.5.x|0.6.x``^12.3``7.x``^7.0``>=2020-03-02``0.4.x``^12.0``6.x``^6.40``>=2019-05-16``0.2.x``^9.0|^10.0|^11.0|^12.0`Contributing
------------

[](#contributing)

We have only implemented the repositories for the Stripe resources we are using in our application. Repositories are very easy to implement - for example, the [payment intent repository](./src/Repositories/PaymentIntentRepository.php) - because they are predominantly composed of traits. Then they just need to be added to [the connector class](./src/Connector.php).

If you find this package is missing a resource you need in your application, an ideal way to contribute is to submit a pull request to add the missing repository.

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance59

Moderate activity, may be stable

Popularity38

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 96.1% 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 ~202 days

Recently: every ~325 days

Total

12

Last Release

248d ago

PHP version history (8 changes)v0.1.0PHP ^5.6|^7.0

v0.2.0PHP ^7.1

v0.3.0PHP ^7.2.5

v0.5.0PHP ^7.3

v0.5.1PHP ^7.3|^8.0

v0.6.0PHP ^7.4|^8.0

v0.7.0PHP ^8.1

v0.8.0PHP ^8.2

### Community

Maintainers

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

---

Top Contributors

[![lindyhopchris](https://avatars.githubusercontent.com/u/4464333?v=4)](https://github.com/lindyhopchris "lindyhopchris (98 commits)")[![Ciaro](https://avatars.githubusercontent.com/u/891736?v=4)](https://github.com/Ciaro "Ciaro (2 commits)")[![jackbrycesmith](https://avatars.githubusercontent.com/u/13235268?v=4)](https://github.com/jackbrycesmith "jackbrycesmith (1 commits)")[![marcorivm](https://avatars.githubusercontent.com/u/1222598?v=4)](https://github.com/marcorivm "marcorivm (1 commits)")

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cloudcreativity-laravel-stripe/health.svg)

```
[![Health](https://phpackages.com/badges/cloudcreativity-laravel-stripe/health.svg)](https://phpackages.com/packages/cloudcreativity-laravel-stripe)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[asciisd/knet

Knet package is provides an expressive, fluent interface to KNet's payment services.

141.1k](/packages/asciisd-knet)

PHPackages © 2026

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