forked from alchemy-fr/queue-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 817 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
{
"name": "alchemy/queue-bundle",
"description": "Symfony bundle for alchemy/queue-component",
"authors": [
{
"name": "Thibaud Fabre",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Alchemy\\QueueBundle\\": "src/QueueBundle",
"Alchemy\\QueueProvider\\": "src/QueueProvider"
}
},
"autoload-dev": {
"psr-4": {
"Alchemy\\QueueBundle\\Tests\\": "tests/unit/QueueBundle",
"Alchemy\\QueueProvider\\Tests\\": "tests/unit/QueueProvider"
}
},
"license": "MIT",
"require-dev": {
"symfony/symfony": "^2.6",
"phpunit/phpunit": "^4|^5",
"silex/silex": "^1.3.0"
},
"require": {
"alchemy/queue-component": "^0.1.4",
"php": ">=5.5"
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}