-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.35 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "yceruto/task-rabbitmq-bundle",
"type": "symfony-bundle",
"description": "Background task management. Adds abstraction layer for php-amqplib/rabbitmq-bundle for Symfony applications",
"keywords": ["symfony", "rabbitmq", "queue", "job", "task"],
"homepage": "https://github.com/yceruto/TaskRabbitMqBundle",
"license": "MIT",
"authors": [
{
"name": "Yonel Ceruto",
"email": "yonelceruto@gmail.com"
}
],
"require": {
"php": ">=7.1.3",
"doctrine/doctrine-bundle": "^1.6",
"php-amqplib/rabbitmq-bundle": "^1.13",
"symfony/framework-bundle": "^3.0",
"symfony/process": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"phpunit/phpunit": "^6.0",
"symfony/console": "^3.0",
"symfony/phpunit-bridge": "^3.0",
"symfony/yaml": "^3.0"
},
"suggest": {
"symfony/framework-bundle": "To use this lib as a full Symfony Bundle and to use the profiler data collector"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Yceruto\\TaskRabbitMqBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}