Initial commit

This commit is contained in:
Marcel Kapfer 2021-04-11 13:41:47 +02:00
commit 1bfb8a1a77
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
11 changed files with 668 additions and 0 deletions

23
ext_emconf.php Normal file
View file

@ -0,0 +1,23 @@
<?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.0.0',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-10.4.99',
'php' => '7.2.0-7.4.99'
],
],
'autoload' => [
'psr-4' => [
'MMK2410\\PlausibleAnalytics\\' => 'Classes'
]
],
];