ping2me / laravel
Laravel client for Ping2.me
v1.0
2024-10-17 05:42 UTC
Requires
- php: ^7|^8
- illuminate/contracts: ^11.0
- illuminate/support: ^11.0
- ping2me/php: ^0.2
Requires (Dev)
- orchestra/testbench: ^9.0
- pestphp/pest: ^3.0
README
The Laravel package for the ping2.me.
Installation
composer require ping2me/laravel
Configuration
Update your config/services.php
file with the following:
// other services 'ping2me' => [ 'endpoint' => env('PING2ME_ENDPOINT'), ],
So you can set up your endpoint in your .env
file:
PING2ME_ENDPOINT=@daudau/ping2me
Usage
\Ping2Me\Laravel\Facades\Ping::send('Hello world!'); // or ping('Hello world!');
Then the message will be sent to you Telegram (or Discord, Slack) channel immediately.
Performance
Don't worry about performance, the package will send the request in the background if your server installed curl
(which is almost exist in every server).
So there will be almost zero delay about the http request.