├── .github └── workflows │ ├── composer-json-lint.yml │ └── php-cs-fixer.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json └── src └── PhpCsFixer └── Rules.php /.github/workflows/composer-json-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/.github/workflows/composer-json-lint.yml -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/composer.json -------------------------------------------------------------------------------- /src/PhpCsFixer/Rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mollie/php-coding-standards/HEAD/src/PhpCsFixer/Rules.php --------------------------------------------------------------------------------