-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathext_emconf.php
More file actions
45 lines (41 loc) · 1.68 KB
/
ext_emconf.php
File metadata and controls
45 lines (41 loc) · 1.68 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
<?php
/***************************************************************
* Extension Manager/Repository config file for ext "w_query2csv".
*
* Auto generated 20-01-2010 12:57
*
* Manual updates:
* Only the data in the array - everything else is removed by next
* writing. "version" and "dependencies" must not be touched!
***************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'Export database/query to CSV',
'description' => 'This is a CSV generator, which combines simplicity with high configurability and data processing powers. It provides download points
for your preconfigured database queries dumped to customized CSV files. If you have some data collected in database tables, which must be periodically, like, downloaded by admins,
sent to external CRM, where some raw values must be converted to something meaningful, like uids replaced with labels from relations, timestamps visualized, arrays deserialized,
this extension is very useful. It\'s simple and easy to configure, but very flexible with input/output settings and scalability.',
'category' => 'plugin',
'version' => '0.7.0',
'state' => 'stable',
'author' => 'A. wolo Wolski',
'author_email' => 'wolo.wolski@gmail.com',
'author_company' => 'wolo \'.\' studio',
'constraints' => [
'depends' => [
'typo3' => '13.4.0-13.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
// this overrides the whole "autoload" from composer.json, it doesn't merge! keep in sync or remove from here
'autoload' => [
'psr-4' => [
'WoloPl\\WQuery2csv\\' => 'Classes/'
],
'classmap' => [
'Classes/Plugin/Export.php'
]
],
];