forked from TYPO3GmbH/ext-hubspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
34 lines (32 loc) · 819 Bytes
/
ext_emconf.php
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
<?php
/*
* This file is part of the package t3g/hubspot.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Hubspot Integration',
'description' => 'Hubspot integration',
'category' => 'extension',
'constraints' => [
'depends' => [
'typo3' => '8.7.99-10.4.99'
],
'conflicts' => [
],
],
'autoload' => [
'psr-4' => [
'T3G\\Hubspot\\' => 'Classes'
],
],
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'Susanne Moog',
'author_email' => 'susanne.moog@typo3.com',
'author_company' => 'TYPO3 GmbH',
'version' => '2.1.1',
];