-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
44 lines (44 loc) · 1.15 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": "avro/csv-bundle",
"type": "symfony-bundle",
"description": "Symfony2 CSV Bundle",
"keywords": ["CSV", "import", "export"],
"homepage": "http://github.com/jdewit/AvroCsvBundle",
"license": "MIT",
"authors": [
{
"name": "Joris de Wit",
"email": "[email protected]"
},
{
"name": "Steffen Roßkamp",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
},
"require": {
"php": "^7.2.0",
"ext-json": "*",
"misatotremor/case-bundle": "^0.4.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/orm": "^2.7",
"symfony/event-dispatcher": "^4.3|^5.0",
"symfony/form": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/routing": "^4.0|^5.0",
"symfony/phpunit-bridge": "^4.4|^5.0",
"twig/twig": "^2.4|^3.0"
},
"autoload": {
"psr-4": { "Avro\\CsvBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}