sandimvlyadi / smdev
A laravel library for smdev
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sandimvlyadi/smdev
Requires
- php: >=7.4
- guzzlehttp/guzzle: ^6.3.1|^7.0.1
This package is auto-updated.
Last update: 2025-12-29 04:00:31 UTC
README
1. Installation
Use Composer, so you can install via CLI:
composer require sandimvlyadi/smdev
and run composer install on your terminal.
2. How to Use
2.1. SMDEV Webhooks
Add this line to your .env file:
SMDEV_WEBHOOK="[YOUR WEBHOOK URL]"
You can call this library:
use Sandimvlyadi\Smdev\Hook;
Send message to your webhook:
Hook::send('your message goes here');
2.1. RENOT (Real Time Error Notification)
Add this line to your .env file:
RENOT_URL="[YOUR RENOT SERVICE URL]"
You can call this library:
use Sandimvlyadi\Smdev\Renot;
Send message:
Renot::send('your message goes here');
or
Renot::send('your message goes here', 'XXXXXX,YYYYYY');
XXXXXX and YYYYYY are targets (bot's user PID)