-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
37 lines (35 loc) · 994 Bytes
/
ext_emconf.php
File metadata and controls
37 lines (35 loc) · 994 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
31
32
33
34
35
36
37
<?php declare(strict_types=1);
defined('TYPO3')
or die('Access denied.');
/** @var string $_EXTKEY */
$EM_CONF[$_EXTKEY] = [
'title' => 'Workspaces Widget',
'description' => 'Workspaces Widget',
'category' => 'widgets',
'author' => 'Robin von den Bergen',
'author_email' => 'robinvonberg@gmx.de',
'state' => 'stable',
'version' => '14.0.0',
'constraints' => [
'depends' => [
'php' => '8.2.0-8.5.99',
'typo3' => '14.0.0-14.4.99',
'backend' => '14.0.0-14.4.99',
'extbase' => '14.0.0-14.4.99',
'dashboard' => '14.0.0-14.4.99',
'workspaces' => '14.0.0-14.4.99'
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'CodeFareith\\CfWorkspacesWidget\\' => 'Classes'
]
],
'autoload-dev' => [
'psr-4' => [
'CodeFareith\\CfWorkspacesWidget\\Tests\\' => 'Tests'
]
]
];