Download the PHP package thunderpush/php-thunderclient without Composer
On this page you can find all versions of the php package thunderpush/php-thunderclient. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download thunderpush/php-thunderclient
More information about thunderpush/php-thunderclient
Files in thunderpush/php-thunderclient
Download thunderpush/php-thunderclient
More information about thunderpush/php-thunderclient
Files in thunderpush/php-thunderclient
Vendor thunderpush
Package php-thunderclient
Short Description A PHP library for sending messages to Thunderpush server.
License BSD-3-Clause
Homepage https://github.com/thunderpush/php-thunderclient
Package php-thunderclient
Short Description A PHP library for sending messages to Thunderpush server.
License BSD-3-Clause
Homepage https://github.com/thunderpush/php-thunderclient
Please rate this library. Is it a good library?
Informations about the package php-thunderclient
Thunderpush client for PHP
A PHP library for sending messages to the Thunderpush server.
Example
<?php
require_once('Thunder.php');
$thunder = new Thunder('key', 'secretkey', 'localhost', '8080');
// Get user count
print $thunder->get_user_count();
// Get users in channel "test"
print $thunder->get_users_in_channel("test");
// Send message to user "test"
print $thunder->send_message_to_user("test", array("msg" => "hello!"));
// Send message to a channel
print $thunder->send_message_to_channel("test", array("msg" => "hello!"));
// Check if user "test" is online
print $thunder->is_user_online("test");
// Disconnect user "test"
print $thunder->disconnect_user("test");
All versions of php-thunderclient with dependencies
PHP Build Version
Package Version
Requires
guzzlehttp/guzzle Version
~5.0
The package thunderpush/php-thunderclient contains the following files
Loading the files please wait ....