├── .gitattributes ├── .github └── workflows │ └── coding_standard.yaml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── ecs.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/coding_standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/.github/workflows/coding_standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/composer.json -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrplenik/clean-code-php/HEAD/ecs.php --------------------------------------------------------------------------------