forked from markocupic/export_table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (53 loc) · 1.28 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
50
51
52
53
{
"name": "markocupic/export_table",
"description": "Export Contao database tables to CSV- or XML-files.",
"keywords": [
"contao",
"export",
"csv",
"xml"
],
"type": "contao-module",
"license": "MIT",
"authors": [
{
"name": "Marko Cupic",
"email": "[email protected]",
"homepage": "https://github.com/markocupic",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/markocupic/export_table/issues",
"source": "https://github.com/markocupic/export_table"
},
"require": {
"php": "^7.4|^8.0",
"ext-xmlwriter": "*",
"ext-json": "*",
"contao/core-bundle": "^4.9",
"codefog/contao-haste": "^4.20",
"ramsey/uuid": "^3.0 || ^4.0"
},
"require-dev": {
"contao/easy-coding-standard": "^4.0",
"contao/manager-bundle": "^4.13",
"contao/manager-plugin": "^2.3.1",
"contao/test-case": "^4.6",
"phpunit/phpunit": "^9.3",
"symfony/phpunit-bridge": "^5.4"
},
"autoload": {
"psr-4": {
"Markocupic\\ExportTable\\": "src/"
},
"exclude-from-classmap": [
"src/Resources/contao/config",
"src/Resources/contao/dca",
"src/Resources/contao/languages"
]
},
"extra": {
"contao-manager-plugin": "Markocupic\\ExportTable\\ContaoManager\\Plugin"
}
}