-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 933 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/jobbuilder",
"description": "A set of utility classes to help creating complex jobs for Tarantool JobQueue.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8",
"tarantool/queue": "^0.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^7.1|^8|^9",
"vimeo/psalm": "^3.9|^4"
},
"autoload": {
"psr-4": {
"Tarantool\\JobQueue\\JobBuilder\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Tarantool\\JobQueue\\JobBuilder\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}