@@ -6,10 +6,13 @@ phpnats
66* Master: [ ![ Build Status] ( https://travis-ci.org/repejota/phpnats.png?branch=master )] ( https://travis-ci.org/repejota/phpnats )
77* Develop: [ ![ Build Status] ( https://travis-ci.org/repejota/phpnats.png?branch=develop )] ( https://travis-ci.org/repejota/phpnats )
88
9- ** Insight **
9+ ** Coverage **
1010
11- * [ ![ SensioLabsInsight] ( https://insight.sensiolabs.com/projects/3fb84121-278d-489f-8394-d95c3e3b05d2/mini.png )] ( https://insight.sensiolabs.com/projects/3fb84121-278d-489f-8394-d95c3e3b05d2 )
11+ * Master: [ ![ Coverage Status] ( https://coveralls.io/repos/repejota/phpnats/badge.svg?branch=master )] ( https://coveralls.io/r/repejota/phpnats?branch=master )
12+ * Develop: [ ![ Coverage Status] ( https://coveralls.io/repos/repejota/phpnats/badge.svg?branch=develop )] ( https://coveralls.io/r/repejota/phpnats?branch=develop )
1213
14+ Introduction
15+ ------------
1316
1417A PHP client for the [ NATS messaging system] ( https://nats.io ) .
1518
2831### Basic Usage
2932
3033``` php
31- $client = new \Nats\Connection(verbose=True );
34+ $client = new \Nats\Connection();
3235$client->connect();
3336
3437# Simple Publisher
@@ -45,13 +48,46 @@ $client->subscribe("foo", $callback);
4548$client->wait(1);
4649```
4750
51+ Developer's Information
52+ -----------------------
4853
49- Tests
50- -----
54+ ### Tests
5155
5256Tests are in the ` tests ` folder.
5357To run them, you need ` PHPUnit ` and execute ` make test ` .
5458
59+ ### Code Quality
60+
61+ We are using [ PHP Code Sniffer] ( http://pear.php.net/package/PHP_CodeSniffer/docs )
62+ to ensure our code follow an high quality standard.
63+
64+ To perform an analysis of the code execute ` make cs ` .
65+
66+
67+ Creators
68+ --------
69+
70+ ** Raül Pérez**
71+
72+ - < https://twitter.com/repejota >
73+ - < https://github.com/repejota >
74+
75+ ** Adrià Cidre**
76+
77+ - < https://twitter.com/adriacidre >
78+ - < https://github.com/adriacidre >
79+
80+ ** José Gil**
81+
82+ - < https://twitter.com/josgilmo >
83+ - < https://github.com/josgilmo >
84+
85+ ** Gorka López de Torre**
86+
87+ - < https://twitter.com/glopezdetorre >
88+ - < https://github.com/glopezdetorre >
89+
90+
5591
5692License
5793-------
0 commit comments