├── .gitignore ├── README.md ├── composer.json └── src └── Composer ├── InstallerScript ├── DummyEntryPoints.php ├── EntryPoint.php └── WebDirectory.php ├── InstallerScripts.php └── Typo3EntryPointFinder.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/composer.json -------------------------------------------------------------------------------- /src/Composer/InstallerScript/DummyEntryPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/src/Composer/InstallerScript/DummyEntryPoints.php -------------------------------------------------------------------------------- /src/Composer/InstallerScript/EntryPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/src/Composer/InstallerScript/EntryPoint.php -------------------------------------------------------------------------------- /src/Composer/InstallerScript/WebDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/src/Composer/InstallerScript/WebDirectory.php -------------------------------------------------------------------------------- /src/Composer/InstallerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/src/Composer/InstallerScripts.php -------------------------------------------------------------------------------- /src/Composer/Typo3EntryPointFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helhum/typo3-secure-web/HEAD/src/Composer/Typo3EntryPointFinder.php --------------------------------------------------------------------------------