-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
53 lines (53 loc) · 1.32 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
{
"name": "tarantool/client",
"description": "PHP client for Tarantool.",
"keywords": ["tarantool", "client", "pure", "nosql"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8",
"rybakit/msgpack": "^0.9",
"symfony/uid": "^5.1|^6|^7"
},
"require-dev": {
"ext-json": "*",
"ext-sockets": "*",
"friendsofphp/php-cs-fixer": "^2.19",
"monolog/monolog": "^1.24|^2.0",
"psr/log": "^1.1",
"tarantool/phpunit-extras": "^0.2.0",
"vimeo/psalm": "^3.9|^4"
},
"suggest": {
"ext-decimal": "For using decimals with Tarantool 2.3+",
"ext-uuid": "For better performance when using UUIDs with Tarantool 2.4+",
"psr/log": "For using LoggingMiddleware"
},
"autoload": {
"psr-4": {
"Tarantool\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tarantool\\Client\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.10.x-dev"
}
}
}