This project is a PHP Stomp Client that besides it implements the Stomp protocol fully, brings some ActiveMQ and Apollo specific utils that could make your messaging from PHP easier.
- For new projects you should use version
4.*which requiresphp-5.5. - For projects running older php versions you can use version
3.*which is the lastphp-5.3compatible. - For running projects with
fusesource/[email protected]clients you can use version2.2.2. - All version newer that
2.xwon't be compatible withfusesource/stomp-php. (https://github.com/dejanb/stomp-php.)
The source is PSR-0 compliant. So just download the source and add the Namespace "Stomp" to your autoloader configuration with the path pointing to src/.
As an alternate you have the possibility to make use of composer to manage your project dependencies.
Just add
"require": {
"stomp-php/stomp-php": "4.*"
}to your project composer.json.
Or simply run composer require stomp-php/stomp-php in your project home.
If you used fusesource/stomp-php before, you can use our 2.x versions.
"require": {
"stomp-php/stomp-php": "2.*"
}See our wiki.
Have a look at our example project https://github.com/stomp-php/stomp-php-examples.
We code in PSR2, please use our predefined pre_commit.sh hook.
To run the tests you first need to fetch the dependencies for the test suite via composer:
$ php composer.phar install
The functional testsuite is divided into three broker versions.
Currently it's running on ActiveMq (Port 61010), Apollo (61020), RabbitMq (61030).
Apollo should be configured to use admin:password and RabbitMq to guest:guest.
While ActiveMq must be configured to use no login at all.
You can setup all brokers by running travisci/bin/ci/setup.sh. Stop them by travisci/bin/ci/stop.sh.
Used version can be configured at travis/(BROKER)_VERSION.
You can use travisci/bin/ci/clean.sh to reset the test environment.
If you only like to run the functional generic tests, ensure Apollo is configured.