diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a19b2c2..ab4f50e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [7.2] + php-versions: [7.4] env: TYPO3_EXTENSION_KEY: typo3_encore diff --git a/Classes/DependencyInjection/EntryLookupCompilerPass.php b/Classes/DependencyInjection/EntryLookupCompilerPass.php deleted file mode 100644 index be1a4d0..0000000 --- a/Classes/DependencyInjection/EntryLookupCompilerPass.php +++ /dev/null @@ -1,53 +0,0 @@ -getArrayByPath('builds'); - $entrypointsPathDefaultBuild = $settingsService->getStringByPath('entrypointJsonPath'); - - if (! empty($buildConfigurations)) { - foreach ($buildConfigurations as $buildConfigurationKey => $buildConfiguration) { - $entrypointsPath = sprintf('%s/entrypoints.json', $buildConfiguration); - $arguments = [ - $entrypointsPath, - $buildConfigurationKey, - ]; - $definition = new Definition(EntrypointLookup::class, $arguments); - $container->setDefinition($buildConfigurationKey, $definition); - } - } - - if ($filesystem->exists($filesystem->getFileAbsFileName($entrypointsPathDefaultBuild))) { - $arguments = [ - $entrypointsPathDefaultBuild, - EntrypointLookupInterface::DEFAULT_BUILD, - ]; - $definition = new Definition(EntrypointLookup::class, $arguments); - $container->setDefinition(EntrypointLookupInterface::DEFAULT_BUILD, $definition); - } - } -}