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

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

sakoora0x/laravel-monero-module
===============================

Laravel Monero Module

09JavaScript

Since Oct 24Pushed 6mo agoCompare

[ Source](https://github.com/sakoora0x/laravel-monero-module)[ Packagist](https://packagist.org/packages/sakoora0x/laravel-monero-module)[ RSS](/packages/sakoora0x-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 sakoora0x/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([
    ...,
    \sakoora0x\LaravelMoneroModule\MoneroServiceProvider::class,
])->toArray(),

'aliases' => Facade::defaultAliases()->merge([
    ...,
    'Monero' => \sakoora0x\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

18

—

LowBetter than 8% of packages

Maintenance46

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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/4a57bfb0b7a98c2728ab3b8e2d9e41a18bd0f9d47fccefbd3ebc6d1293801f94?d=identicon)[sakoora0x](/maintainers/sakoora0x)

---

Top Contributors

[![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)")[![sakoora0x](https://avatars.githubusercontent.com/u/239889939?v=4)](https://github.com/sakoora0x "sakoora0x (3 commits)")

### Embed Badge

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

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

###  Alternatives

[paragonie/stern

Stern lets you built type-safe PHP projects, even if your project's users aren't writing type-safe code

201.5k1](/packages/paragonie-stern)

PHPackages © 2026

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