ping2me/php

Ping2me PHP client

Maintainers

Package info

github.com/ping2-me/php

pkg:composer/ping2me/php

Statistics

Installs: 140

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v0.3.2 2025-02-14 05:26 UTC

This package is auto-updated.

Last update: 2026-04-14 07:53:29 UTC


README

Installation

composer require ping2me/php

Usage

Setup

// Set up your endpoint once at the beginning of your application 
// before sending any messages.
Ping2me\Php\Ping::$endpoint = '@daudau/debug'

Use class style

use Ping2me\Php\Ping;

Ping::make()->send('New user Bob registered!');

Use function style

ping('New user Bob registered!');