forked from jdewit/AvroCsvBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.16 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
{
"name": "misatotremor/csv-bundle",
"type": "symfony-bundle",
"description": "Symfony2 CSV Bundle",
"keywords": ["CSV", "import", "export"],
"homepage": "http://github.com/MisatoTremor/AvroCsvBundle",
"license": "MIT",
"authors": [
{
"name": "Joris de Wit",
"email": "[email protected]"
},
{
"name": "Steffen Roßkamp",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"misatotremor/case-bundle": "^1.0.0"
},
"require-dev": {
"doctrine/annotations": "^1.13 || ^2.0",
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"doctrine/orm": "^2.8",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
},
"conflict": {
"doctrine/annotations": "<1.13 || >=3.0"
},
"autoload": {
"psr-4": { "Avro\\CsvBundle\\": "" }
}
}