Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
fac270f1
Commit
fac270f1
authored
Dec 07, 2021
by
Thomas Löffler
Browse files
[TASK] Fix CGL
parent
b35cc3d8
Pipeline
#20738
canceled with stages
in 44 seconds
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
extensions.xml
0 → 100644
View file @
fac270f1
This diff is collapsed.
Click to expand it.
rector.php
View file @
fac270f1
<?php
declare
(
strict_types
=
1
);
declare
(
strict_types
=
1
);
use
Rector\Core\Configuration\Option
;
use
Rector\Core\ValueObject\PhpVersion
;
use
Rector\Php55\Rector\String_\StringClassNameToClassConstantRector
;
use
Rector\PostRector\Rector\NameImportingPostRector
;
use
Ssch\TYPO3Rector\Configuration\Typo3Option
;
use
Ssch\TYPO3Rector\FileProcessor\Composer\Rector\ExtensionComposerRector
;
use
Ssch\TYPO3Rector\FileProcessor\TypoScript\Rector\ExtbasePersistenceTypoScriptRector
;
use
Ssch\TYPO3Rector\FileProcessor\TypoScript\Rector\FileIncludeToImportStatementTypoScriptRector
;
use
Ssch\TYPO3Rector\Rector\v9\v0\InjectAnnotationRector
;
use
Ssch\TYPO3Rector\Rector\General\ConvertImplicitVariablesToExplicitGlobalsRector
;
use
Ssch\TYPO3Rector\Rector\General\ExtEmConfRector
;
use
Ssch\TYPO3Rector\Rector\v9\v0\InjectAnnotationRector
;
use
Ssch\TYPO3Rector\Set\Typo3LevelSetList
;
use
Ssch\TYPO3Rector\FileProcessor\TypoScript\Rector\ExtbasePersistenceTypoScriptRector
;
use
Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator
;
...
...
@@ -42,7 +41,7 @@ return static function (ContainerConfigurator $containerConfigurator): void {
// If you only want to process one/some TYPO3 extension(s), you can specify its path(s) here.
// If you use the option --config change __DIR__ to getcwd()
$parameters
->
set
(
Option
::
PATHS
,
[
$parameters
->
set
(
Option
::
PATHS
,
[
__DIR__
.
'/extensions/'
,
]);
...
...
@@ -61,8 +60,8 @@ return static function (ContainerConfigurator $containerConfigurator): void {
// This is used by the class \Ssch\TYPO3Rector\Rector\PostRector\FullQualifiedNamePostRector to force FQN in this paths and files
$parameters
->
set
(
Typo3Option
::
PATHS_FULL_QUALIFIED_NAMESPACES
,
[
#
If you are targeting TYPO3 Version 11 use can now use Short namespace
#
@see namespace https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ExtensionArchitecture/ConfigurationFiles/Index.html
//
If you are targeting TYPO3 Version 11 use can now use Short namespace
//
@see namespace https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ExtensionArchitecture/ConfigurationFiles/Index.html
'ext_localconf.php'
,
'ext_tables.php'
,
'ClassAliasMap.php'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment