forked from Kephson/paste_reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
33 lines (31 loc) · 923 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
<?php /** @noinspection PhpUndefinedVariableInspection */
/*
* This file is part of the package ehaerer/paste-reference.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Paste reference for content elements',
'description' => 'Paste reference instead of copy for content elements',
'category' => 'plugin',
'version' => '3.0.0',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-12.4.99',
],
'conflicts' => [
'gridelements' => '*',
],
],
'autoload' => [
'psr-4' => [
'EHAERER\\PasteReference\\' => 'Classes'
],
],
'state' => 'stable',
'clearCacheOnLoad' => true,
'author' => 'Ephraim Härer',
'author_email' => '[email protected]',
'author_company' => 'private',
];