├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── Makefile.help.mk ├── README.md ├── VERSION ├── composer.json ├── examples ├── connect.php ├── connectauth.php ├── connectauthtoken.php ├── ping.php ├── pubsub │ ├── jsonencodedpubsub.php │ ├── pub.php │ ├── pubsub.php │ └── sub.php ├── reqres │ ├── jsonencodedreqres.php │ ├── reqres.php │ └── request.php └── simpleclient │ └── main.php ├── phpspec.yml ├── phpunit.xml.dist ├── ruleset.xml ├── spec └── Nats │ ├── ConnectionOptionsSpec.php │ ├── ConnectionSpec.php │ ├── MessageSpec.php │ └── ServerInfoSpec.php ├── src └── Nats │ ├── Connection.php │ ├── ConnectionOptions.php │ ├── EncodedConnection.php │ ├── Encoders │ ├── Encoder.php │ ├── JSONEncoder.php │ ├── PHPEncoder.php │ └── YAMLEncoder.php │ ├── Exception.php │ ├── Message.php │ ├── Php71RandomGenerator.php │ └── ServerInfo.php └── test ├── ConnectionOptionsTest.php ├── ConnectionTest.php ├── EncodedConnectionTest.php ├── Encoders ├── JSONEncoderTest.php ├── PHPEncoderTest.php └── YAMLEncoderTest.php ├── MessageTest.php └── test.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/Makefile.help.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.8.7 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/composer.json -------------------------------------------------------------------------------- /examples/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/connect.php -------------------------------------------------------------------------------- /examples/connectauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/connectauth.php -------------------------------------------------------------------------------- /examples/connectauthtoken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/connectauthtoken.php -------------------------------------------------------------------------------- /examples/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/ping.php -------------------------------------------------------------------------------- /examples/pubsub/jsonencodedpubsub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/pubsub/jsonencodedpubsub.php -------------------------------------------------------------------------------- /examples/pubsub/pub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/pubsub/pub.php -------------------------------------------------------------------------------- /examples/pubsub/pubsub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/pubsub/pubsub.php -------------------------------------------------------------------------------- /examples/pubsub/sub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/pubsub/sub.php -------------------------------------------------------------------------------- /examples/reqres/jsonencodedreqres.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/reqres/jsonencodedreqres.php -------------------------------------------------------------------------------- /examples/reqres/reqres.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/reqres/reqres.php -------------------------------------------------------------------------------- /examples/reqres/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/reqres/request.php -------------------------------------------------------------------------------- /examples/simpleclient/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/examples/simpleclient/main.php -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/ruleset.xml -------------------------------------------------------------------------------- /spec/Nats/ConnectionOptionsSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/spec/Nats/ConnectionOptionsSpec.php -------------------------------------------------------------------------------- /spec/Nats/ConnectionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/spec/Nats/ConnectionSpec.php -------------------------------------------------------------------------------- /spec/Nats/MessageSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/spec/Nats/MessageSpec.php -------------------------------------------------------------------------------- /spec/Nats/ServerInfoSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/spec/Nats/ServerInfoSpec.php -------------------------------------------------------------------------------- /src/Nats/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Connection.php -------------------------------------------------------------------------------- /src/Nats/ConnectionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/ConnectionOptions.php -------------------------------------------------------------------------------- /src/Nats/EncodedConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/EncodedConnection.php -------------------------------------------------------------------------------- /src/Nats/Encoders/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Encoders/Encoder.php -------------------------------------------------------------------------------- /src/Nats/Encoders/JSONEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Encoders/JSONEncoder.php -------------------------------------------------------------------------------- /src/Nats/Encoders/PHPEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Encoders/PHPEncoder.php -------------------------------------------------------------------------------- /src/Nats/Encoders/YAMLEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Encoders/YAMLEncoder.php -------------------------------------------------------------------------------- /src/Nats/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Exception.php -------------------------------------------------------------------------------- /src/Nats/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Message.php -------------------------------------------------------------------------------- /src/Nats/Php71RandomGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/Php71RandomGenerator.php -------------------------------------------------------------------------------- /src/Nats/ServerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/src/Nats/ServerInfo.php -------------------------------------------------------------------------------- /test/ConnectionOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/ConnectionOptionsTest.php -------------------------------------------------------------------------------- /test/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/ConnectionTest.php -------------------------------------------------------------------------------- /test/EncodedConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/EncodedConnectionTest.php -------------------------------------------------------------------------------- /test/Encoders/JSONEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/Encoders/JSONEncoderTest.php -------------------------------------------------------------------------------- /test/Encoders/PHPEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/Encoders/PHPEncoderTest.php -------------------------------------------------------------------------------- /test/Encoders/YAMLEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/Encoders/YAMLEncoderTest.php -------------------------------------------------------------------------------- /test/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/MessageTest.php -------------------------------------------------------------------------------- /test/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repejota/phpnats/HEAD/test/test.pdf --------------------------------------------------------------------------------