bookmark-pages/ext_emconf.php

35 lines
962 B
PHP
Raw Normal View History

2021-08-16 16:15:21 +02:00
<?php
/*
* This file is part of the package buepro/bookmark_pages.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
2021-08-17 19:45:38 +02:00
'title' => 'Bookmarks/Likes/Ratings',
'description' => 'Provides bookmarks/likes/ratings functionality of frontend pages and articles for logged in frontend users.',
2021-08-16 16:15:21 +02:00
'category' => 'plugin',
2021-08-17 19:45:38 +02:00
'author' => 'Sven Wappler',
'author_email' => 'typo3@wappler.systems',
'author_company' => 'WapplerSystems',
'version' => '0.0.0',
2021-08-20 16:25:22 +02:00
'state' => 'alpha',
2021-08-16 16:15:21 +02:00
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'constraints' => [
'depends' => [
2021-08-17 19:45:38 +02:00
'typo3' => '10.4.0-10.4.99'
2021-08-16 16:15:21 +02:00
],
2021-08-17 19:45:38 +02:00
'conflicts' => []
2021-08-16 16:15:21 +02:00
],
'autoload' => [
'psr-4' => [
2021-08-17 19:45:38 +02:00
'WapplerSystems\\BookmarksLikesRatings\\' => 'Classes'
2021-08-16 16:15:21 +02:00
]
]
];