tyrola / xmpphp
Jabber Library For Sending Jabber Messages
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2020-08-26 21:06:17 UTC
README
XMPPHP is a fork of svn://netflint.net/xmpphp. This is an elegant PHP library for XMPP (aka Jabber, Google Talk, etc).
Author: Nathan Fritz, jabber id: fritzy [at] netflint.net Co-Author: Stephan Wentz, jabber id: stephan [at] wentz.it Maintainer of this fork: Alexander Birkner
Prerequisites
- PHP 5.3.2 or newer
- SSL Support Compiled
Installation
Installation is a quick and easy 2 steps process:
- Install XMPPHP
- Use it
Step 1: Install XMPPHP
The preferred way to install this bundle is to rely on Composer.
Just check on Packagist the version you want to install (in the following example, we used "2.0-dev") and add it to your composer.json
:
{ "require": { // ... "tyrola/xmpphp": "2.0-dev" } }
Step 2: Use it
This sample shows how to send a Jabber message to a user.
<?php require_once './vendor/autoload.php'; $XMPP = new \BirknerAlex\XMPPHP\XMPP('jabber.domain.com', 5222, 'firstname.lastname', 'MySecretPassword', 'PHP'); $XMPP->connect(); $XMPP->processUntil('session_start', 10); $XMPP->presence(); $XMPP->message('target.user@jabber.domain.com', 'Hello, how are you?', 'chat'); $XMPP->disconnect();
Please feel free to add more samples to this Github Repository.
TODO
- MUC Support
License Exception
Please contact Nathan Fritz for library exceptions if you would like to distribute XMPPHP with a non-GPL compatible license.