forked from oliverklee/ext-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
42 lines (41 loc) · 1.06 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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'PHPUnit',
'description' => 'Unit testing for TYPO3. Includes PHPUnit, Selenium, a CLI test runner and a testing framework.',
'category' => 'module',
'shy' => 0,
'version' => '5.3.5',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => 'Classes/BackEnd',
'state' => 'stable',
'uploadfolder' => 1,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 0,
'lockType' => '',
'author' => 'Oliver Klee',
'author_email' => '[email protected]',
'author_company' => '',
'doNotLoadInFE' => 1,
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' => [
'depends' => [
'php' => '5.6.0-7.2.99',
'typo3' => '7.6.0-8.7.99',
],
'conflicts' => [],
'suggests' => [],
],
'suggests' => [],
'autoload' => [
'classmap' => [
'Classes',
'Tests',
],
],
'_md5_values_when_last_written' => '',
];