-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
59 lines (57 loc) · 1.76 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* ext_emconf.php
*
* Copyright (C) Leipzig University Library 2017 <info@ub.uni-leipzig.de>
*
* @author Ulf Seltmann <seltmann@ub.uni-leipzig.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Booking for Rooms',
'description' => 'Manage bookings of rooms for frontend users',
'category' => 'plugin',
'version' => '2.3.2',
'state' => 'stable',
'uploadfolder' => false,
'createDirs' => '',
'clearcacheonload' => true,
'author' => 'Ulf Seltmann',
'author_email' => 'seltmann@ub.uni-leipzig.de',
'author_company' => 'Leipzig University Library',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'typo3' => '9.0.0-10.4.99',
'iconfont' => '>=0.9.0',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' =>
[
'psr-4' =>
[
'Ubl\\Booking\\' => 'Classes',
],
],
'autoload-dev' =>
[
'psr-4' =>
[
'Ubl\\Booking\\Tests' => 'Tests',
],
],
];