Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

funivan/xmpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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