This repository was archived by the owner on Feb 26, 2020. It is now read-only.
forked from byrnedo/php-nats-streaming
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.37 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
44
45
46
47
48
49
50
{
"name": "smartweb/php-nats-streaming",
"description": "PHP Client for nats-streaming-server.",
"authors": [
{
"name": "Nicolai Agersbæk",
"email": "na@zitcom.dk"
}
],
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"protobuf-php/protobuf": "^0.1.3",
"smartweb/phpnats": "^0.9"
},
"require-dev": {
"protobuf-php/protobuf-plugin": "^0.1.2",
"symfony/console": "^2.8@dev",
"phpunit/phpunit": "5.3.*",
"php-coveralls/php-coveralls": "2.0.0",
"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"
}
}
},
{
"type": "composer",
"url": "https://composer.smartweb.io/"
}
],
"autoload": {
"psr-4": {
"NatsStreaming\\": "src/NatsStreaming",
"NatsStreamingProtos\\": "gen/NatsStreamingProtos"
}
}
}