-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.36 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
45
46
47
48
49
{
"name": "rich-id/csv-generator-bundle",
"description": "A csv bundle for Symfony 5.4",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.fr"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/rich-id/csv-generator-bundle",
"docs": "https://github.com/rich-id/csv-generator-bundle/blob/master/README.md",
"issues": "https://github.com/rich-id/csv-generator-bundle/issues"
},
"require": {
"php": "^8.1",
"doctrine/orm": "^2.7 || ^3.0",
"richcongress/bundle-toolbox": "*",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/serializer": "^6.0 || ^7.0",
"symfony/translation": "^6.0 || ^7.0"
},
"require-dev": {
"richcongress/test-suite": "^0.2"
},
"autoload": {
"psr-4": {
"RichId\\CsvGeneratorBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"RichId\\CsvGeneratorBundle\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}