Completed
Push — master ( 8f3c40...07220b )
by Fabien
04:49 queued 01:39
created
ext_emconf.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,28 +1,28 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $EM_CONF[$_EXTKEY] = [
4
-    'title' => 'Versatile and Interactive Display - List Component',
5
-    'description' => 'Generic listing of records with versatile ways of interacting with the data, e.g. advanced filter, inline editing, mass editing, ... Veni, vidi, vici!',
6
-    'category' => 'module',
7
-    'author' => 'Fabien Udriot',
8
-    'author_email' => '[email protected]',
9
-    'module' => '',
10
-    'state' => 'stable',
11
-    'version' => '2.6.1-dev',
12
-    'autoload' => [
13
-        'psr-4' => ['Fab\\Vidi\\' => 'Classes']
14
-    ],
15
-    'constraints' =>
16
-        [
17
-            'depends' =>
18
-                [
19
-                    'typo3' => '7.6.0-8.99.99',
20
-                ],
21
-            'conflicts' =>
22
-                [
23
-                ],
24
-            'suggests' =>
25
-                [
26
-                ],
27
-        ]
4
+	'title' => 'Versatile and Interactive Display - List Component',
5
+	'description' => 'Generic listing of records with versatile ways of interacting with the data, e.g. advanced filter, inline editing, mass editing, ... Veni, vidi, vici!',
6
+	'category' => 'module',
7
+	'author' => 'Fabien Udriot',
8
+	'author_email' => '[email protected]',
9
+	'module' => '',
10
+	'state' => 'stable',
11
+	'version' => '2.6.1-dev',
12
+	'autoload' => [
13
+		'psr-4' => ['Fab\\Vidi\\' => 'Classes']
14
+	],
15
+	'constraints' =>
16
+		[
17
+			'depends' =>
18
+				[
19
+					'typo3' => '7.6.0-8.99.99',
20
+				],
21
+			'conflicts' =>
22
+				[
23
+				],
24
+			'suggests' =>
25
+				[
26
+				],
27
+		]
28 28
 ];
Please login to merge, or discard this patch.
ext_localconf.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 if (!defined('TYPO3_MODE')) {
3
-    die ('Access denied.');
3
+	die ('Access denied.');
4 4
 }
5 5
 
6 6
 $configuration = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['vidi']);
7 7
 
8 8
 if (false === isset($configuration['autoload_typoscript']) || true === (bool)$configuration['autoload_typoscript']) {
9 9
 
10
-    \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript(
11
-        'vidi',
12
-        'constants',
13
-        '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:vidi/Configuration/TypoScript/constants.txt">'
14
-    );
15
-
16
-    \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript(
17
-        'vidi',
18
-        'setup',
19
-        '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:vidi/Configuration/TypoScript/setup.txt">'
20
-    );
10
+	\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript(
11
+		'vidi',
12
+		'constants',
13
+		'<INCLUDE_TYPOSCRIPT: source="FILE:EXT:vidi/Configuration/TypoScript/constants.txt">'
14
+	);
15
+
16
+	\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript(
17
+		'vidi',
18
+		'setup',
19
+		'<INCLUDE_TYPOSCRIPT: source="FILE:EXT:vidi/Configuration/TypoScript/setup.txt">'
20
+	);
21 21
 }
22 22
 
23 23
 // Configure commands that can be run from the cli_dispatch.phpsh script.
Please login to merge, or discard this patch.