├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src └── Composer ├── ConsoleIo.php ├── InstallerScript └── ConsoleCommand.php └── InstallerScripts.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/composer.json -------------------------------------------------------------------------------- /src/Composer/ConsoleIo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/src/Composer/ConsoleIo.php -------------------------------------------------------------------------------- /src/Composer/InstallerScript/ConsoleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/src/Composer/InstallerScript/ConsoleCommand.php -------------------------------------------------------------------------------- /src/Composer/InstallerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3-Console/composer-auto-commands/HEAD/src/Composer/InstallerScripts.php --------------------------------------------------------------------------------