-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
43 lines (43 loc) · 1.31 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": "basis-company/nats",
"description": "nats jetstream client for php",
"keywords": ["nats", "client", "streaming", "jetstream", "queue", "messaging", "subscribe", "publish", "request", "response", "bucket", "key-value", "storage"],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"monolog/monolog": "^2.3.5",
"ext-sodium": "*",
"friendsofphp/php-cs-fixer": "^3.9",
"phan/phan": "^5.3"
},
"suggest": {
"paragonie/sodium_compat": "Provides Ed25519 for nkey authentication if sodium is not available",
"ext-sodium": "Provides Ed25519 for nkey authentication"
},
"license": "mit",
"autoload": {
"psr-4": {
"Basis\\Nats\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --testsuite Tests",
"perf-test": "phpunit --testsuite Performance",
"cs-fix": "php-cs-fixer fix --config .php-cs-fixer.php",
"cs-verify": "php-cs-fixer fix --config .php-cs-fixer.php --dry-run --diff",
"phan": "phan --allow-polyfill-parser"
},
"authors": [
{
"name": "dmitry krokhin",
"email": "[email protected]"
}
]
}