├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Documentation ├── Files │ └── youtube-video-tutorial.png └── Settings.cfg ├── LICENSE ├── README.md ├── composer.json ├── rector.php ├── src ├── Console │ ├── Application.php │ └── Command │ │ ├── Command.php │ │ ├── SetupCommand.php │ │ └── UpdateCommand.php ├── CsFixerConfig.php ├── CsFixerConfigInterface.php └── Setup.php ├── t3-cs ├── templates ├── editorconfig.dist ├── extension_php-cs-fixer.dist.php └── project_php-cs-fixer.dist.php └── typo3-coding-standards /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Documentation/Files/youtube-video-tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/Documentation/Files/youtube-video-tutorial.png -------------------------------------------------------------------------------- /Documentation/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/Documentation/Settings.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/composer.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/rector.php -------------------------------------------------------------------------------- /src/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/Console/Application.php -------------------------------------------------------------------------------- /src/Console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/Console/Command/Command.php -------------------------------------------------------------------------------- /src/Console/Command/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/Console/Command/SetupCommand.php -------------------------------------------------------------------------------- /src/Console/Command/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/Console/Command/UpdateCommand.php -------------------------------------------------------------------------------- /src/CsFixerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/CsFixerConfig.php -------------------------------------------------------------------------------- /src/CsFixerConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/CsFixerConfigInterface.php -------------------------------------------------------------------------------- /src/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/src/Setup.php -------------------------------------------------------------------------------- /t3-cs: -------------------------------------------------------------------------------- 1 | typo3-coding-standards -------------------------------------------------------------------------------- /templates/editorconfig.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/templates/editorconfig.dist -------------------------------------------------------------------------------- /templates/extension_php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/templates/extension_php-cs-fixer.dist.php -------------------------------------------------------------------------------- /templates/project_php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/templates/project_php-cs-fixer.dist.php -------------------------------------------------------------------------------- /typo3-coding-standards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYPO3/coding-standards/HEAD/typo3-coding-standards --------------------------------------------------------------------------------