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. rondo-rondo/laravel-monero-module

ActiveLibrary

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

Laravel Monero Module

064JavaScript

Since Mar 17Pushed 1mo 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 1mo 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 27% of packages

Maintenance60

Regular maintenance activity

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 75% 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://www.gravatar.com/avatar/d5d7ebae37e5e050bfc4b51c0cbeea67d82735136065a3c345775dff35b44309?d=identicon)[Rondo-Rondo](/maintainers/Rondo-Rondo)

---

Top Contributors

[![Rondo-Rondo](https://avatars.githubusercontent.com/u/85443225?v=4)](https://github.com/Rondo-Rondo "Rondo-Rondo (36 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)
```

PHPackages © 2026

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