-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.39 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
{
"name": "antqa/dataexporter-bundle",
"type": "symfony-bundle",
"description": "Easy export data to CSV, XML, HTML, JSON or XLS",
"keywords": ["exporter", "csv", "xls", "xml", "json"],
"homepage": "http://github.com/antqa/DataExporterBundle",
"license": "MIT",
"authors": [
{
"name": "Piotr Antosik",
"email": "[email protected]",
"homepage": "https://www.ant.qa",
"role": "Developer"
},
{
"name": "Community",
"homepage": "https://github.com/antqa/DataExporterBundle/contributors"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"symfony/framework-bundle": "^4.4|^5.4",
"symfony/http-foundation": "^4.4|^5.4",
"symfony/property-access": "^4.4|^5.4",
"symfony/options-resolver": "^4.4|^5.4",
"twig/twig": "^2.7 || ^3.0"
},
"require-dev": {
"symfony/yaml": "^4.4|^5.4",
"knplabs/knp-snappy-bundle": "^1.5",
"symfony/templating": "^4.4|^5.4",
"phpunit/phpunit": "^5.0",
"phpoffice/phpspreadsheet": "^1.0"
},
"suggest": {
"knplabs/knp-snappy-bundle": "To use PDF export"
},
"autoload": {
"psr-4": { "AntQa\\DataExporterBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}