{"id":30175629,"url":"https://github.com/it-healer/laravel-monero","last_synced_at":"2026-01-20T16:53:33.124Z","repository":{"id":306080089,"uuid":"1025000795","full_name":"it-healer/laravel-monero","owner":"it-healer","description":"A library for Laravel that allows you to create and manage the Monero cryptocurrency.","archived":false,"fork":false,"pushed_at":"2025-08-09T13:49:20.000Z","size":2272,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-09T15:26:53.240Z","etag":null,"topics":["blockchain","crypto","cryptocurrency","laravel","library","monero","php","wallet","xmr"],"latest_commit_sha":null,"homepage":"https://it-healer.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/it-healer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-23T15:08:02.000Z","updated_at":"2025-08-09T13:48:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"0939a1d3-4a30-419d-ba00-351c23043c6f","html_url":"https://github.com/it-healer/laravel-monero","commit_stats":null,"previous_names":["it-healer/laravel-monero"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/it-healer/laravel-monero","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/it-healer%2Flaravel-monero","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/it-healer%2Flaravel-monero/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/it-healer%2Flaravel-monero/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/it-healer%2Flaravel-monero/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/it-healer","download_url":"https://codeload.github.com/it-healer/laravel-monero/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/it-healer%2Flaravel-monero/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269987120,"owners_count":24508174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","crypto","cryptocurrency","laravel","library","monero","php","wallet","xmr"],"created_at":"2025-08-12T02:00:25.812Z","updated_at":"2025-10-26T19:03:39.789Z","avatar_url":"https://github.com/it-healer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](docs/logo.jpeg)\n\n\u003ca href=\"https://packagist.org/packages/it-healer/laravel-monero\" target=\"_blank\"\u003e\n    \u003cimg style=\"display: inline-block; margin-top: 0.5em; margin-bottom: 0.5em\" src=\"https://img.shields.io/packagist/v/it-healer/laravel-monero.svg?style=flat\u0026cacheSeconds=3600\" alt=\"Latest Version on Packagist\"\u003e\n\u003c/a\u003e\n\n\u003ca href=\"https://packagist.org/packages/it-healer/laravel-monero\" target=\"_blank\"\u003e\n    \u003cimg style=\"display: inline-block; margin-top: 0.5em; margin-bottom: 0.5em\" src=\"https://img.shields.io/packagist/dt/it-healer/laravel-monero.svg?style=flat\u0026cacheSeconds=3600\" alt=\"Total Downloads\"\u003e\n\u003c/a\u003e\n\n# Laravel Monero\n\nOrganization of payment acceptance and automation of payments of XMR coins on the Monero blockchain.\n\n### Installation\n\nYou can install the package via composer:\n```bash\ncomposer require it-healer/laravel-monero\n```\n\nAfter you can run installer using command:\n```bash\nphp artisan monero:install\n```\n\nOptional, you can install Monero Wallet RPC using command:\n```bash\nphp artisan monero:wallet-rpc\n```\n\nAnd run migrations:\n```bash\nphp artisan migrate\n```\n\nRegister Service Provider and Facade in app, edit `config/app.php`:\n```php\n'providers' =\u003e ServiceProvider::defaultProviders()-\u003emerge([\n    ...,\n    \\ItHealer\\LaravelMonero\\MoneroServiceProvider::class,\n])-\u003etoArray(),\n\n'aliases' =\u003e Facade::defaultAliases()-\u003emerge([\n    ...,\n    'Monero' =\u003e \\ItHealer\\LaravelMonero\\Facades\\Monero::class,\n])-\u003etoArray(),\n```\n\nAdd cron job, in file `app/Console/Kernel` in method `schedule(Schedule $schedule)` add\n```\nSchedule::command('monero:sync')\n    -\u003eeveryMinute()\n    -\u003erunInBackground();\n```\n\nYou must setup Supervisor, create file `/etc/supervisor/conf.d/monero.conf` with content (change user and paths):\n```\n[program:monero]\nprocess_name=%(program_name)s\ncommand=php /home/forge/example.com/artisan monero\nautostart=true\nautorestart=true\nuser=forge\nredirect_stderr=true\nstdout_logfile=/home/forge/example.com/monero.log\nstopwaitsecs=3600\n```\n\n### Commands\nMonero Node sync with all wallets in here.\n```bash\nphp artisan monero:node-sync [NODE ID]\n```\n\nMonero Wallet sync.\n```bash\nphp artisan monero:wallet-sync [WALLET ID]\n```\n\n\n### For Developers\nCommand for build JS script:\n```bash\nnpm i\nnpm run build\n```\n\n## Support\n\n- Telegram: [@biodynamist](https://t.me/biodynamist)\n- WhatsApp: [+905516294716](https://wa.me/905516294716)\n- Web: [it-healer.com](https://it-healer.com)\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Credits\n\n- [IT-HEALER](https://github.com/it-healer)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fit-healer%2Flaravel-monero","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fit-healer%2Flaravel-monero","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fit-healer%2Flaravel-monero/lists"}