-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "tarantool/queue",
"description": "PHP bindings for Tarantool Queue.",
"keywords": ["queue", "schedule", "delayed", "priority", "ttl", "ttr", "task", "job", "worker", "tarantool", "nosql"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "gen.work@gmail.com"
}
],
"require": {
"php": "^7.2.5|^8",
"tarantool/client": "^0.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"tarantool/phpunit-extras": "^0.2",
"vimeo/psalm": "^3.9|^4"
},
"autoload": {
"psr-4": {
"Tarantool\\Queue\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Tarantool\\Queue\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}