PHPackages                             pdazcom/laravel-walletone - 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. [API Development](/categories/api)
4. /
5. pdazcom/laravel-walletone

ActiveLibrary[API Development](/categories/api)

pdazcom/laravel-walletone
=========================

Laravel integration walletone.com

1.0.1(9y ago)14501[1 issues](https://github.com/pdazcom/laravel-walletone/issues)MITPHPPHP ^7.0

Since Mar 25Pushed 9y ago2 watchersCompare

[ Source](https://github.com/pdazcom/laravel-walletone)[ Packagist](https://packagist.org/packages/pdazcom/laravel-walletone)[ Docs](http://github.com/pdazcom/laravel-walletone)[ RSS](/packages/pdazcom-laravel-walletone/feed)WikiDiscussions master Synced today

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

Laravel WalletOne
=================

[](#laravel-walletone)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d303e9cdf2c495433a55159b00c27b9654d70894377ea955451fa341c0575180/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7064617a636f6d2f6c61726176656c2d77616c6c65746f6e652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pdazcom/laravel-walletone)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/7f862e6c4652d3a23282b0143379bb6c824092741c446914b3894079fa14ad85/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7064617a636f6d2f6c61726176656c2d77616c6c65746f6e652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pdazcom/laravel-walletone)

Implementation of WalletOne payments for laravel 5. There are form of payment and a middleware for processing requests for confirmation of payments from the walletone service. Based on two events - SuccessPayment and FailedPayment.

Install
-------

[](#install)

Via Composer

```
$ composer require pdazcom/laravel-walletone
```

Then in config/app.php add service-provider and facade alias:

```
'providers' => [
    ...
    Pdazcom\LaravelWalletOne\Providers\WalletoneServiceProvider::class,
    ...
];

'aliases' => [
    ...
    'WalletOne' => Pdazcom\LaravelWalletOne\Facades\WalletOne::class,
    ...
];

```

Usage
-----

[](#usage)

First of all you need to run:

```
php artisan vendor:publish --provider='Pdazcom\LaravelWalletOne\Providers\WalletoneServiceProvider'

```

and then fill `config/wallet-one.php` file.

Then you can use `\WalletOne` facade.

To add options use `\WalletOne::addWalletOptions($options)`

```
$options = [
   'WMI_DESCRIPTION' => 'Pay for account balance',
   'WMI_PAYMENT_AMOUNT' => 100,
];

\WalletOne::addWalletOptions($options)

```

To get fields for payment form use `\WalletOne::getFields()`. And send it to your view:

```
$fields = \WalletOne::getFields()

```

To include payment form to your page just include it to view:

```
@include('wallet-one:form', $fields)

```

To process requests of WalletOne payment notifications just create listeners of two events: `Pdazcom\LaravelWalletOne\Events\FailedPayment` and `Pdazcom\LaravelWalletOne\Events\SuccessPayment`

```
// FailedPaymentListener
public function handle(FailedPayment $event)
{
    $postData = $event->postData;
    $exception = $event->exception
}

```

```
// SuccessPaymentListener
public function handle(SuccessPayment $event)
{
    $postData = $event->postData;
}

```

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Konstantin A.](https://github.com/pdazcom)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity60

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

Total

2

Last Release

3383d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/306540?v=4)[Kostya](/maintainers/pdazcom)[@pdazcom](https://github.com/pdazcom)

---

Top Contributors

[![pdazcom](https://avatars.githubusercontent.com/u/306540?v=4)](https://github.com/pdazcom "pdazcom (14 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/pdazcom-laravel-walletone/health.svg)

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

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.5M923](/packages/statamic-cms)[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

2.9k36.4M126](/packages/darkaonline-l5-swagger)[knuckleswtf/scribe

Generate API documentation for humans from your Laravel codebase.✍

2.3k13.5M60](/packages/knuckleswtf-scribe)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

72287.1k1](/packages/mozex-anthropic-laravel)[justbetter/laravel-magento-client

A client to interact with Magento

49108.7k14](/packages/justbetter-laravel-magento-client)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.5k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

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