-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 859 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 859 Bytes
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
{
"name": "ee/dataexporter-bundle",
"type": "symfony-bundle",
"description": "Easy export data to CSV, XML, HTML, JSON or XLS",
"keywords": ["exporter","csv","xls", "xml", "json"],
"homepage": "http://laboratorium.ee",
"license": "MIT",
"authors": [
{
"name": "Piotr Antosik",
"email": "mail@piotrantosik.com",
"homepage": "http://piotrantosik.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1",
"symfony/http-foundation": "~2.1",
"symfony/property-access": "~2.1"
},
"require-dev": {
"symfony/yaml": "~2.1"
},
"autoload": {
"psr-0": { "EE\\DataExporterBundle": "" }
},
"target-dir": "EE/DataExporterBundle"
}