-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 961 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
39
40
{
"name": "welp/batch-operation-bundle",
"description": "Symfony Bundle to batch Operation",
"version": "0.0.1",
"type": "symfony-bundle",
"homepage": "https://github.com/welpdev/batchoperation-bundle",
"license": "MIT",
"keywords": [
"symfony-bundle",
"symfony",
"php",
"bundle"
],
"authors": [
{
"name": "Gaetan DELBART",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Welp\\BatchBundle\\": "src/"
}
},
"require": {
"php": ">=5.6",
"jms/serializer-bundle": "1.0.0",
"php-amqplib/rabbitmq-bundle": "^1.12",
"symfony/filesystem": "^2.8",
"symfony/finder": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "~5",
"symfony/symfony": "~2.7 | ~3.0",
"phpspec/phpspec": "^3.2"
},
"config": {
"bin-dir": "bin"
}
}