├── .gitattributes ├── .github └── workflows │ └── toc.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md └── phpstorm ├── php-conventions-code-style.xml └── php-conventions-inspections.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/.github/workflows/toc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/README.md -------------------------------------------------------------------------------- /phpstorm/php-conventions-code-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/phpstorm/php-conventions-code-style.xml -------------------------------------------------------------------------------- /phpstorm/php-conventions-inspections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/index0h/php-conventions/HEAD/phpstorm/php-conventions-inspections.xml --------------------------------------------------------------------------------