Download the PHP package kadet/nucleus without Composer
On this page you can find all versions of the php package kadet/nucleus. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kadet/nucleus
More information about kadet/nucleus
Files in kadet/nucleus
Informations about the package nucleus
[WiP] Nucleus - XMPP Library for PHP
Asynchronous XMPP library for PHP based on React PHP. Library is still work in progress,
so I don't recommend using it. It obsoletes my old kadet/xmpp
package.
Already available
Modular Client class
By design client class (\Kadet\Xmpp\XmppClient
) acts like stream - for sending and receiving packets over network,
event emitter to inform about events, and dependency container (what a wonderful violation of SRP) for managing modules.
It allows to move almost all logic outside of that class into proper and exchangeable components.
Basic client instance can be set up quite easily:
Options passed to second argument, are equivalent to C#'s property instantiation, so above example is same as calling:
With exception for modules
and default-modules
which are used for initial module setup. You can disable default
modules by setting default-modules
to false, but it's highly not recommended for non-test purposes.
Available events are:
also, all default events from react/stream
are applicable.
TLS Handling
Most of XMPP servers require TLS connection, by default React streams don't support encryption. Library will handle
encryption if underlying stream implements \Kadet\Xmpp\Network\SecureStream
interface (provided stream classes like
\Kadet\Xmpp\Network\TcpStream
implements it by default).
(Better)Event API
Nucleus uses extended version of evenement/evenement
to provide convenient EventEmitter
API. So you can now filter
events by predicates and event queue is prioritized.
Predicate, as well as callback is called with arguments passed to event. There are few default predicates that you can
use, they can be found in Utils/Filter.php
.
Also you can prioritize events
Sender argument is not provided by default, if needed you have to partially apply function, there is also shortcut in every event emitting class.
Event queue can be stopped by returning false
by event.
Things to do
See roadmap on Trello, I'll keep it updated. Project is created in milestone system, it means that after completing each milestone API should be stable - but it's not guaranteed at the moment.
All versions of nucleus with dependencies
react/stream Version ^0.4.3
react/event-loop Version ^0.4
evenement/evenement Version 2.0.*
psr/log Version 1.0.*
kadet/keylighter Version ^0.8
fabiang/sasl Version dev-rspauth
php-di/php-di Version ^5.3