whatspie / php-client
Official Whatspie PHP Client
Installs: 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/whatspie/php-client
Requires
- guzzlehttp/guzzle: ^6.5
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2025-10-12 22:31:29 UTC
README
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();