forked from TYPO3-Headless/headless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
27 lines (25 loc) · 905 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
<?php
/*
* This file is part of the "headless" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.md file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'TYPO3 Headless API',
'description' => 'Makes TYPO3 a headless CMS. Content and pages available in JSON format. Supports multilanguage, multidomain, forms, frontend login, workspaces and more. For JS frontend app see nuxt-typo3 package',
'state' => 'stable',
'author' => 'Łukasz Uznański',
'author_email' => 'extensions@macopedia.pl',
'author_company' => 'Macopedia Sp. z o.o.',
'category' => 'fe',
'version' => '4.3.2',
'constraints' => [
'depends' => [
'frontend' => '12.4.3-12.5.99',
'typo3' => '12.4.3-12.5.99'
],
'conflicts' => [],
'suggests' => [],
],
];