forked from EE/DataExporter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.36 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.36 KB
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
{
"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": "piotr@ant.qa",
"homepage": "https://www.ant.qa",
"role": "Developer"
},
{
"name": "Community",
"homepage": "https://github.com/antqa/DataExporterBundle/contributors"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"symfony/framework-bundle": "^2.7|^3.0",
"symfony/http-foundation": "^2.7|^3.0",
"symfony/property-access": "^2.7|^3.0",
"symfony/options-resolver": "^2.7|^3.0"
},
"require-dev": {
"symfony/yaml": "^2.7|^3.0",
"knplabs/knp-snappy-bundle": "~1.4",
"symfony/templating": "^2.7|^3.0",
"phpunit/phpunit": "^5.0"
},
"suggest": {
"knplabs/knp-snappy-bundle": "To use PDF export",
"symfony/templating": "To use HTML export"
},
"autoload": {
"psr-4": { "AntQa\\DataExporterBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.6.x-dev"
}
}
}