-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
39 lines (38 loc) · 957 Bytes
/
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
{
"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": "^0.8.6"
},
"require-dev": {
"protobuf-php/protobuf-plugin": "^0.1.2",
"symfony/console": "^2.8@dev",
"phpunit/phpunit": "5.3.*",
"satooshi/php-coveralls": "dev-master",
"squizlabs/php_codesniffer": "~2.0",
"github.com/gogo/protobuf": "dev-master"
},
"repositories" : [
{
"type": "package",
"package": {
"name": "github.com/gogo/protobuf",
"version": "dev-master",
"source": {
"url": "https://github.com/gogo/protobuf",
"type": "git",
"reference": "origin/master"
}
}
}
],
"autoload": {
"psr-4": {
"NatsStreaming\\": "src/NatsStreaming",
"NatsStreamingProtos\\":"gen/NatsStreamingProtos"
}
}
}