-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "leezy/pheanstalk-bundle",
"description": "The LeezyPheanstalkBundle is a Symfony Bundle that provides a command line interface for manage the Beanstalkd workqueue server & a pheanstalk integration.",
"keywords": ["symfony", "beanstalkd", "bundle", "pheanstalk", "queueing", "messaging", "asynchronous"],
"type": "symfony-bundle",
"homepage": "https://github.com/armetiz/LeezyPheanstalkBundle",
"license": "MIT",
"authors": [{
"name" : "Thomas Tourlourat",
"email" : "thomas@tourlourat.com",
"homepage": "http://www.armetiz.info"
}],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"pda/pheanstalk": "^4",
"psr/log": "^1",
"symfony/console": "^3|^4|^5",
"symfony/framework-bundle": "^3|^4|^5"
},
"require-dev": {
"phpunit/phpunit": "^8|^9.5"
},
"autoload": {
"psr-4": {
"Leezy\\PheanstalkBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leezy\\PheanstalkBundle\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}