PHPackages                             codeplugtech/creem-payments - 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. codeplugtech/creem-payments

ActiveLibrary[Payment Processing](/categories/payments)

codeplugtech/creem-payments
===========================

Laravel Package for Creem.io Payments

0.0.4(2mo ago)010MITPHPPHP ^8.2

Since Feb 11Pushed 2mo agoCompare

[ Source](https://github.com/codeplugtech/creem-payments)[ Packagist](https://packagist.org/packages/codeplugtech/creem-payments)[ RSS](/packages/codeplugtech-creem-payments/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (32)Versions (5)Used By (0)

Laravel Creem Payments Package
==============================

[](#laravel-creem-payments-package)

1. Add the `Billable` trait to your billable model definition.

```
use Codeplugtech\CreemPayments\Billable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use Billable;
}
```

2. Add API Keys to your `.env` file

```
CREEM_API_KEY=YOUR_API_KEY
CREEM_SANDBOX=true
CREEM_WEBHOOK_SECRET=YOUR_WEBHOOK_KEY

```

3. You can create a checkout session using the code below:

```
$user->subscription()->createCheckoutSession([
    'product_id' => 'prod_123',
    'customer_email' => $user->email,
     // other parameters
]);
```

or via the static method:

```
use Codeplugtech\CreemPayments\CreemPayments;

CreemPayments::createCheckoutSession([
    'product_id' => 'prod_123',
    'customer_email' => 'test@example.com'
]);
```

4. Exclude `creem/*` from CSRF protection in `bootstrap/app.php` file for Laravel 11

```
->withMiddleware(function (Middleware $middleware) {
    $middleware->validateCsrfTokens(except: [
        'creem/*',
    ]);
})
```

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance86

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 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 ~7 days

Total

4

Last Release

73d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7d003be8893e6e2b98aa50970a0648246e30b25c6350ea94f64e303b0092b89d?d=identicon)[ssatz](/maintainers/ssatz)

---

Top Contributors

[![ssatz](https://avatars.githubusercontent.com/u/6892242?v=4)](https://github.com/ssatz "ssatz (7 commits)")

---

Tags

laravelbillingcreem payments

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/codeplugtech-creem-payments/health.svg)

```
[![Health](https://phpackages.com/badges/codeplugtech-creem-payments/health.svg)](https://phpackages.com/packages/codeplugtech-creem-payments)
```

###  Alternatives

[laravel/cashier

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

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

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

264778.4k3](/packages/laravel-cashier-paddle)[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)[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)
