This repository has been archived by the owner on Jan 27, 2022. It is now read-only.
forked from lebrains/LeNats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
69 lines (69 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"description": "The LeNats is a Symfony bundle. it's implements event-based architecture with nats streaming on php",
"name": "vseinstrumentiru/lenats",
"type": "symfony-bundle",
"license": "GPL-3.0-only",
"keywords": [
"nats",
"nats streaming",
"cloud events",
"symfony",
"php",
"event-driven"
],
"authors": [
{
"name": "Ilya Shtrikul",
"email": "[email protected]"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"LeNats\\": "src/",
"GPBMetadata\\": "gen/GPBMetadata/",
"NatsStreamingProtocol\\": "gen/NatsStreamingProtocol/"
}
},
"autoload-dev": {
"psr-4": {
"LeNats\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"clue/block-react": "^1.3",
"google/protobuf": "^3.7",
"jms/serializer-bundle": "^2.4|^3.3",
"mhujer/jms-serializer-uuid": "^1.0|^3.1",
"psr/event-dispatcher": "^0.6|^1.0",
"rakit/validation": "^1.1",
"react/promise-timer": "^1.5",
"react/socket": "^1.2",
"react/stream": "^1.1",
"symfony/console": "^4|^5",
"symfony/event-dispatcher": "^4|^5",
"symfony/framework-bundle": "^4|^5",
"symfony/yaml": "^4|^5"
},
"require-dev": {
"phpstan/phpstan": "^0.11.2",
"phpstan/phpstan-symfony": "^0.11.1",
"symfony/phpunit-bridge": "^4|^5",
"symplify/easy-coding-standard": "^5.4",
"phpunit/phpunit": "^8.0"
},
"scripts": {
"ecs": "vendor/bin/ecs check ./src --fix",
"test": "bin/phpunit",
"stan": "vendor/bin/phpstan analyze ./src"
}
}