PHPackages                             bcismariu/laravel-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. bcismariu/laravel-payments

ActiveLibrary[Payment Processing](/categories/payments)

bcismariu/laravel-payments
==========================

An alternative to Cashier

v0.1.12(8y ago)268MITPHP

Since Nov 5Pushed 8y ago1 watchersCompare

[ Source](https://github.com/bcismariu/laravel-payments)[ Packagist](https://packagist.org/packages/bcismariu/laravel-payments)[ RSS](/packages/bcismariu-laravel-payments/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (16)Used By (0)

Laravel Payments
================

[](#laravel-payments)

[![Build Status](https://camo.githubusercontent.com/fdb85429bafd977c9cb4ae4aa77966c4605773fe8f7f987618e68e7fed305793/68747470733a2f2f7472617669732d63692e6f72672f626369736d617269752f6c61726176656c2d7061796d656e74732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/bcismariu/laravel-payments)[![Latest Stable Version](https://camo.githubusercontent.com/9130f589080b3210535080bf3166c0548e77fee07efd884954cf4fad65872155/68747470733a2f2f706f7365722e707567782e6f72672f626369736d617269752f6c61726176656c2d7061796d656e74732f762f737461626c65)](https://packagist.org/packages/bcismariu/laravel-payments)[![License](https://camo.githubusercontent.com/2c6e3317c562b2b40f4a2456bc03d4565846baace5b9d93ff300639b03c5bc1f/68747470733a2f2f706f7365722e707567782e6f72672f626369736d617269752f6c61726176656c2d7061796d656e74732f6c6963656e7365)](https://packagist.org/packages/bcismariu/laravel-payments)[![Total Downloads](https://camo.githubusercontent.com/544992f3fcc7a51263172470482e2281b855e3caa386893fa547e621f3679dbc/68747470733a2f2f706f7365722e707567782e6f72672f626369736d617269752f6c61726176656c2d7061796d656e74732f646f776e6c6f616473)](https://packagist.org/packages/bcismariu/laravel-payments)

A very basic alternative to Laravel Cashier built to allow lighter implementations.

### Installation

[](#installation)

Use composer to install the package.

`composer require bcismariu/laravel-payments`

Edit `config/app.php` and add the following line to your `providers` list:

`Bcismariu\Laravel\Payments\PaymentsServiceProvider::class`

Publish the package configuration files.

```
php artisan vendor:publish --provider="Bcismariu\\Laravel\\Payments\\PaymentsServiceProvider" --tag="config" --force

```

Migrate the database

```
php artisan migrate

```

#### Attention!

[](#attention)

If you plan using the `konnektive` driver, you should also require its dependencies.

`composer require hassletauf/konnektive-crm`

Add the following lines to your `.env` file:

```
KONNEKTIVE_LOGIN=your-konnektive-loginId
KONNEKTIVE_PASSWORD=your-konnektive-password

```

### Usage

[](#usage)

Add the `Billable` trait on your User model:

```
use Bcismariu\Laravel\Payments\Billable;

class User
{
    use Billable;
```

Import the Credit Card info into your User object and charge it:

```
$user->setCreditCard(new Card([
    'brand'     => 'visa',
    'number'    => '0000000000000000',
    'exp_month' => '02',
    'exp_year'  => '2017',
    'cvc_check' => '123',
]));

$response = $user->charge(5, [
        'product_id'    => 1234
    ]);
```

### Handling subscriptions

[](#handling-subscriptions)

```
// Import the Credit Card info into your User object:

$user->setCreditCard(new Card([
    'brand'     => 'visa',
    'number'    => '0000000000000000',
    'exp_month' => '02',
    'exp_year'  => '2017',
    'cvc_check' => '123',
]));

// Register the subscription and charge a certain amount:

$subscription = $user->subscribe('plan-name', 5);

// Check if the user has subscribed to a given plan

$user->subscribed('plan-name');
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Recently: every ~0 days

Total

13

Last Release

2988d ago

### Community

Maintainers

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

---

Top Contributors

[![bcismariu](https://avatars.githubusercontent.com/u/10166477?v=4)](https://github.com/bcismariu "bcismariu (26 commits)")

---

Tags

laravelbillingkonnektive

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/bcismariu-laravel-payments/health.svg)

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

###  Alternatives

[mollie/laravel-cashier-mollie

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

172155.4k1](/packages/mollie-laravel-cashier-mollie)[dinkbit/conekta-cashier

Dinkbit Cashier nos da una interface para cobrar subscripciones con Conketa en Laravel.

355.4k](/packages/dinkbit-conekta-cashier)

PHPackages © 2026

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