Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 714 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 714 Bytes

#About

Build Status

Elegant PHP library for XMPP (aka Jabber, Google Talk, etc).

Example:

   $user = 'username@gmail.com';
   $password = 'password';


   $conn = new \Fiv\Xmpp\Xmpp('talk.google.com', 5222, $user, $password, 'xmpphp', 'gmail.com', true, \Fiv\Xmpp\Log::LEVEL_INFO);
   $conn->connect();
   $conn->processUntil('session_start');

   $conn->message("other.user.name@gmail.com/gmail.00145456", "test message");
   $conn->disconnect();

Author: Nathan Fritz, jabber id: fritzy [at] netflint.net Co-Author: Stephan Wentz, jabber id: stephan [at] wentz.it

Maintainer of this fork: funivan