forked from repejota/phpnats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.2 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
44
45
46
47
{
"name": "repejota/nats",
"description": "A nats.io client in PHP",
"type": "library",
"minimum-stability": "dev",
"license": "MIT",
"require": {
"ircmaxell/random-lib": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"phpspec/phpspec": "^3.0",
"satooshi/php-coveralls": "2.0.x-dev",
"leanphp/phpspec-code-coverage": "^3.2@dev"
},
"authors": [
{
"name": "Raül Pérez",
"email": "repejota@gmail.com",
"homepage": "http://www.repejota.com",
"role": "Developer"
},
{
"name": "Adrià Cidre",
"email": "adria.cidre@gmail.com",
"homepage": "http://oridoki.com",
"role": "Developer"
},
{
"name": "José Gil",
"email": "josgilmo@gmail.com",
"role": "Developer"
},
{
"name": "Gorka López de Torre",
"email": "glopezdetorre@gmail.com",
"homepage": "http://gorka.io",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Nats": "src",
"Nats\\Test": "src"
}
}
}