forked from basis-company/nats.php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.8 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
{
"name": "mperusso/nats",
"description": "nats jetstream client for php compatible with php 7.3",
"keywords": ["nats", "client", "streaming", "jetstream", "queue", "messaging", "subscribe", "publish", "request", "response", "bucket", "key-value", "storage"],
"require": {
"php": ">=7.3",
"phpcompatibility/php-compatibility": "^9.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"monolog/monolog": "^2.3.5",
"ext-sodium": "*",
"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/"
}
},
"conflict": {
"basis-company/nats": "*"
},
"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",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"php7-3": "./vendor/bin/phpcs -p tests src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.3 --extensions=php"
},
"authors": [
{
"name": "dmitry krokhin",
"email": "[email protected]"
}
]
}