forked from colorcube/bookmark_pages
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ext_emconf.php
34 lines (32 loc) · 971 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 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] = [
'title' => 'Bookmark Pages',
'description' => 'Provides bookmarks functionality of local pages for logged in frontend users.',
'category' => 'plugin',
'author' => 'René Fritz, Roman Büchler',
'author_email' => 'r.fritz@colorcube.de, rb@buechler.pro',
'author_company' => 'Colorcube, buechler.pro gmbh',
'version' => '3.0.1-dev',
'state' => 'stable',
'constraints' => [
'depends' => [
'typo3' => '10.4.14-11.5.99',
'typoscript_rendering' => '2.3.1-2.99.99',
],
'conflicts' => [],
'suggests' => [
'news' => '*'
],
],
'autoload' => [
'psr-4' => [
'Buepro\\BookmarkPages\\' => 'Classes'
]
]
];