├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── doc └── stomp-specification-1.1.md ├── examples ├── basic.php ├── config │ ├── activemq.php │ ├── apollo.php │ ├── probe.php │ └── rabbitmq.php ├── publish.php ├── subscribe-ack.php └── subscribe.php ├── phpunit-functional.xml.dist ├── phpunit.xml.dist ├── src ├── AckResolver.php ├── Client.php ├── Client │ ├── Command │ │ ├── CloseCommand.php │ │ ├── CommandInterface.php │ │ ├── ConnectionEstablishedCommand.php │ │ └── NullCommand.php │ ├── IncomingPackageProcessor.php │ ├── OutgoingPackageCreator.php │ ├── State.php │ └── SubscriptionBag.php ├── Exception │ ├── ConnectionException.php │ ├── InvalidFrameException.php │ ├── ProcessingException.php │ └── ServerErrorException.php ├── Factory.php ├── Io │ ├── InputStream.php │ ├── InputStreamInterface.php │ ├── OutputStream.php │ └── OutputStreamInterface.php └── Protocol │ ├── Frame.php │ ├── InvalidFrameException.php │ └── Parser.php └── tests ├── React ├── Functional │ └── Stomp │ │ ├── AckTest.php │ │ ├── ConnectionTest.php │ │ ├── FunctionalTestCase.php │ │ └── SubscriptionTest.php └── Tests │ └── Stomp │ ├── AckResolverTest.php │ ├── Client │ ├── IncomingPackageProcessorTest.php │ └── OutgoingPackageCreatorTest.php │ ├── ClientTest.php │ ├── FactoryTest.php │ ├── Io │ ├── InputStreamTest.php │ └── OutputStreamTest.php │ ├── Protocol │ ├── FrameDumpTest.php │ └── ParserTest.php │ └── TestCase.php ├── bootstrap.php └── utils ├── Dockerfile.template ├── activemq.xml ├── do_tests.sh └── run_tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/composer.json -------------------------------------------------------------------------------- /doc/stomp-specification-1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/doc/stomp-specification-1.1.md -------------------------------------------------------------------------------- /examples/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/basic.php -------------------------------------------------------------------------------- /examples/config/activemq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/config/activemq.php -------------------------------------------------------------------------------- /examples/config/apollo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/config/apollo.php -------------------------------------------------------------------------------- /examples/config/probe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/config/probe.php -------------------------------------------------------------------------------- /examples/config/rabbitmq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/config/rabbitmq.php -------------------------------------------------------------------------------- /examples/publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/publish.php -------------------------------------------------------------------------------- /examples/subscribe-ack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/subscribe-ack.php -------------------------------------------------------------------------------- /examples/subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/examples/subscribe.php -------------------------------------------------------------------------------- /phpunit-functional.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/phpunit-functional.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AckResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/AckResolver.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Client/Command/CloseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/Command/CloseCommand.php -------------------------------------------------------------------------------- /src/Client/Command/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/Command/CommandInterface.php -------------------------------------------------------------------------------- /src/Client/Command/ConnectionEstablishedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/Command/ConnectionEstablishedCommand.php -------------------------------------------------------------------------------- /src/Client/Command/NullCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/Command/NullCommand.php -------------------------------------------------------------------------------- /src/Client/IncomingPackageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/IncomingPackageProcessor.php -------------------------------------------------------------------------------- /src/Client/OutgoingPackageCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/OutgoingPackageCreator.php -------------------------------------------------------------------------------- /src/Client/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/State.php -------------------------------------------------------------------------------- /src/Client/SubscriptionBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Client/SubscriptionBag.php -------------------------------------------------------------------------------- /src/Exception/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Exception/ConnectionException.php -------------------------------------------------------------------------------- /src/Exception/InvalidFrameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Exception/InvalidFrameException.php -------------------------------------------------------------------------------- /src/Exception/ProcessingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Exception/ProcessingException.php -------------------------------------------------------------------------------- /src/Exception/ServerErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Exception/ServerErrorException.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Io/InputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Io/InputStream.php -------------------------------------------------------------------------------- /src/Io/InputStreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Io/InputStreamInterface.php -------------------------------------------------------------------------------- /src/Io/OutputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Io/OutputStream.php -------------------------------------------------------------------------------- /src/Io/OutputStreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Io/OutputStreamInterface.php -------------------------------------------------------------------------------- /src/Protocol/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Protocol/Frame.php -------------------------------------------------------------------------------- /src/Protocol/InvalidFrameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Protocol/InvalidFrameException.php -------------------------------------------------------------------------------- /src/Protocol/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/src/Protocol/Parser.php -------------------------------------------------------------------------------- /tests/React/Functional/Stomp/AckTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Functional/Stomp/AckTest.php -------------------------------------------------------------------------------- /tests/React/Functional/Stomp/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Functional/Stomp/ConnectionTest.php -------------------------------------------------------------------------------- /tests/React/Functional/Stomp/FunctionalTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Functional/Stomp/FunctionalTestCase.php -------------------------------------------------------------------------------- /tests/React/Functional/Stomp/SubscriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Functional/Stomp/SubscriptionTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/AckResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/AckResolverTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Client/IncomingPackageProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Client/IncomingPackageProcessorTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Client/OutgoingPackageCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Client/OutgoingPackageCreatorTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/ClientTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/FactoryTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Io/InputStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Io/InputStreamTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Io/OutputStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Io/OutputStreamTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Protocol/FrameDumpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Protocol/FrameDumpTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/Protocol/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/Protocol/ParserTest.php -------------------------------------------------------------------------------- /tests/React/Tests/Stomp/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/React/Tests/Stomp/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/utils/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/utils/Dockerfile.template -------------------------------------------------------------------------------- /tests/utils/activemq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/utils/activemq.xml -------------------------------------------------------------------------------- /tests/utils/do_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/utils/do_tests.sh -------------------------------------------------------------------------------- /tests/utils/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friends-of-reactphp/stomp/HEAD/tests/utils/run_tests.sh --------------------------------------------------------------------------------