forked from byrnedo/php-nats-streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.24 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "byrnedo/php-nats-streaming",
"license": "MIT",
"description": "PHP Client for nats-streaming-server.",
"type": "library",
"require": {
"protobuf-php/protobuf": "^0.1.3",
"repejota/nats": "dev-develop as 0.8.8"
},
"require-dev": {
"protobuf-php/protobuf-plugin": "^0.1.2",
"symfony/console": "^2.8@dev",
"phpunit/phpunit": "8.*",
"php-coveralls/php-coveralls": "v2.5.2",
"squizlabs/php_codesniffer": "~2.0",
"github.com/gogo-protobuf": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/fabmade/phpnats"
},
{
"type": "package",
"package": {
"name": "github.com/gogo-protobuf",
"version": "dev-master",
"source": {
"url": "https://github.com/gogo/protobuf",
"type": "git",
"reference": "origin/master"
}
}
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"NatsStreaming\\": "src/NatsStreaming",
"NatsStreamingProtos\\": "gen/NatsStreamingProtos"
}
}
}