-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
30 lines (28 loc) · 793 Bytes
/
ext_emconf.php
File metadata and controls
30 lines (28 loc) · 793 Bytes
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
<?php
/*
* This file is part of the package bk2k/syntax.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Syntax Highlighting',
'description' => 'Lightweight, robust, elegant syntax highlighting based on PrismJS',
'category' => 'templates',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-13.4.99',
'rte_ckeditor' => '12.4.0-13.4.99',
],
],
'autoload' => [
'psr-4' => [
'BK2K\\Syntax\\' => 'Classes',
],
],
'state' => 'stable',
'author' => 'Benjamin Kott',
'author_email' => 'info@bk2k.info',
'author_company' => 'private',
'version' => '4.0.0',
];