Skip to content

Commit 11d702d

Browse files
committedFeb 26, 2020
Support for nats 2.2.0-beta with jetstream
1 parent bd089ea commit 11d702d

15 files changed

+376
-292
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ cover
1010
build
1111
.idea
1212
coverage
13+
.settings
14+
.project
15+
.buildpath

‎README.md

+6-17
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
phpnats
22
=======
33

4-
**Travis**
5-
6-
| Master | Develop |
7-
| ------------- | ------------- |
8-
| [![Build Status](https://travis-ci.org/repejota/phpnats.png?branch=master)](https://travis-ci.org/repejota/phpnats) | [![Build Status](https://travis-ci.org/repejota/phpnats.png?branch=develop)](https://travis-ci.org/repejota/phpnats) |
9-
10-
**Coverage**
11-
12-
| Master | Develop |
13-
| ------------- | ------------- |
14-
| [![Coverage Status](https://coveralls.io/repos/repejota/phpnats/badge.svg?branch=master)](https://coveralls.io/r/repejota/phpnats?branch=master) | [![Coverage Status](https://coveralls.io/repos/repejota/phpnats/badge.svg?branch=develop)](https://coveralls.io/r/repejota/phpnats?branch=develop) |
15-
164
Introduction
175
------------
186

197
A PHP client for the [NATS messaging system](https://nats.io).
8+
This fork of phpnats by repejota that supports more recent versions of NATS (2.2.0-beta) and contains little improvements to fit more into PHP7 world.
209

2110
Requirements
2211
------------
2312

24-
* php 5.6+
13+
* php 7.1+
2514
* [gnatsd](https://github.com/apcera/gnatsd)
2615

2716

@@ -41,7 +30,7 @@ Now let's tell composer about our project's dependancies, in this case, PHPNats.
4130
```
4231
{
4332
"require": {
44-
"repejota/nats": "dev-master"
33+
"workfront/nats": "2.2.0"
4534
}
4635
}
4736
```
@@ -153,10 +142,10 @@ Developer's Information
153142

154143
### Releases
155144

156-
* [Latest stable](https://github.com/repejota/phpnats/tree/master)
157-
* [Latest dev](https://github.com/repejota/phpnats/tree/develop)
145+
* [Latest stable](https://github.com/Workfront/phpnats/tree/master)
146+
* [Latest dev](https://github.com/Workfront/phpnats/tree/develop)
158147

159-
* [PHPNats on Packagist](https://packagist.org/packages/repejota/nats)
148+
* [PHPNats on Packagist](https://packagist.org/packages/Workfront/phpnats)
160149

161150
### Tests
162151

‎composer.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
2-
"name": "repejota/nats",
2+
"name": "workfront/nats",
33
"description": "A nats.io client in PHP",
44
"type": "library",
55
"minimum-stability": "dev",
66
"license": "MIT",
7-
"require": {
8-
"ircmaxell/random-lib": "^1.2"
9-
},
7+
"version": "2.2.0",
8+
"require": {},
109
"require-dev": {
1110
"phpunit/phpunit": "5.*",
1211
"phpspec/phpspec": "^3.0",
@@ -36,6 +35,12 @@
3635
"email": "glopezdetorre@gmail.com",
3736
"homepage": "http://gorka.io",
3837
"role": "Developer"
38+
},
39+
{
40+
"name": "Irek Kubicki",
41+
"email": "irekkubicki@workfront.com",
42+
"homepage": "http://www.workfront.com",
43+
"role": "Software Principal Engineer"
3944
}
4045
],
4146
"autoload": {

0 commit comments

Comments
 (0)
Please sign in to comment.