23 lines
592 B
PHP
23 lines
592 B
PHP
<?php
|
|
|
|
$EM_CONF[$_EXTKEY] = [
|
|
'title' => 'Plausible Analytics Integration',
|
|
'description' => 'Integrate Plausible analytics into TYPO3',
|
|
'category' => 'fe',
|
|
'author' => 'Marcel Kapfer',
|
|
'author_email' => 'opensource@mmk2410.org',
|
|
'state' => 'stable',
|
|
'clearCacheOnLoad' => true,
|
|
'version' => '1.2.0',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '11.5.0-12.4.99',
|
|
'php' => '7.4.0-8.2.99'
|
|
],
|
|
],
|
|
'autoload' => [
|
|
'psr-4' => [
|
|
'MMK2410\\PlausibleAnalytics\\' => 'Classes'
|
|
]
|
|
],
|
|
];
|