ping2me/laravel

Laravel client for Ping2.me

v0.1.1 2023-12-19 11:47 UTC

This package is auto-updated.

Last update: 2024-05-19 15:36:39 UTC


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.