whatspie/php-client

Official Whatspie PHP Client

Maintainers

Package info

github.com/tarikhagustia/whatspie-php-client

pkg:composer/whatspie/php-client

Statistics

Installs: 453

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.2 2020-03-12 09:58 UTC

This package is auto-updated.

Last update: 2026-03-12 23:36:43 UTC


README

CircleCI

Installation

composer require whatspie\php-client

Usage

To get API_KEY goto Profile page on Whatspie Dashboard

$client = new \Whatspie\Client('YOUR_API_KEY', 'YOUR DEVICE');

// Sending Message
$client->to('628561112233')->message('Hi there!')->send();

// Get Messages
$client->getMessages();