PHPackages                             rondo-rondo/laravel-monero-module - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. rondo-rondo/laravel-monero-module

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rondo-rondo/laravel-monero-module
=================================

Laravel Monero Module

071JavaScript

Since Mar 25Pushed 2w agoCompare

[ Source](https://github.com/Rondo-Rondo/laravel-monero-module)[ Packagist](https://packagist.org/packages/rondo-rondo/laravel-monero-module)[ RSS](/packages/rondo-rondo-laravel-monero-module/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Monero Module
=====================

[](#laravel-monero-module)

Organization of payment acceptance and automation of payments of XMR coins on the Monero blockchain.

### Installation

[](#installation)

You can install the package via composer:

```
composer require rondo-rondo/laravel-monero-module
```

After you can run installer using command:

```
php artisan monero:install
```

Optional, you can install Monero Wallet RPC using command:

```
php artisan monero:wallet-rpc
```

And run migrations:

```
php artisan migrate
```

Register Service Provider and Facade in app, edit `config/app.php`:

```
'providers' => ServiceProvider::defaultProviders()->merge([
    ...,
    \Mollsoft\LaravelMoneroModule\MoneroServiceProvider::class,
])->toArray(),

'aliases' => Facade::defaultAliases()->merge([
    ...,
    'Monero' => \Mollsoft\LaravelMoneroModule\Facades\Monero::class,
])->toArray(),
```

Add cron job, in file `app/Console/Kernel` in method `schedule(Schedule $schedule)` add

```
Schedule::command('monero:sync')
    ->everyMinute()
    ->runInBackground();

```

You must setup Supervisor, create file `/etc/supervisor/conf.d/monero.conf` with content (change user and paths):

```
[program:monero]
process_name=%(program_name)s
command=php /home/forge/example.com/artisan monero
autostart=true
autorestart=true
user=forge
redirect_stderr=true
stdout_logfile=/home/forge/example.com/monero.log
stopwaitsecs=3600

```

### Commands

[](#commands)

Monero Node sync with all wallets in here.

```
php artisan monero:node-sync [NODE ID]
```

Monero Wallet sync.

```
php artisan monero:wallet-sync [WALLET ID]
```

### For Developers

[](#for-developers)

Command for build JS script:

```
npm i
npm run build
```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance63

Regular maintenance activity

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 75.5% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/85443225?v=4)[Rondo-Rondo](/maintainers/Rondo-Rondo)[@Rondo-Rondo](https://github.com/Rondo-Rondo)

---

Top Contributors

[![Rondo-Rondo](https://avatars.githubusercontent.com/u/85443225?v=4)](https://github.com/Rondo-Rondo "Rondo-Rondo (37 commits)")[![danajwright](https://avatars.githubusercontent.com/u/4512490?v=4)](https://github.com/danajwright "danajwright (7 commits)")[![mollsoft](https://avatars.githubusercontent.com/u/151442118?v=4)](https://github.com/mollsoft "mollsoft (5 commits)")

### Embed Badge

![Health badge](/badges/rondo-rondo-laravel-monero-module/health.svg)

```
[![Health](https://phpackages.com/badges/rondo-rondo-laravel-monero-module/health.svg)](https://phpackages.com/packages/rondo-rondo-laravel-monero-module)
```

###  Alternatives

[imanghafoori/laravel-middlewarize

Use laravel middlewares on any method calls in your app

1124.5k1](/packages/imanghafoori-laravel-middlewarize)

PHPackages © 2026

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