PHP PSR 验证者
PHP PSR validator
我正在寻找一种工具,它可以检查我的 PHP 代码并根据 PSR 标准自动更新或至少指出代码违反 PSR 标准的地方。 Google 搜索不是很有帮助。有没有可以做到的工具?
对于 PSR-0、PSR-1 和 PSR-2 使用 the PHP coding standard fixer
通过作曲家安装它:
./composer.phar global require fabpot/php-cs-fixer
您可能想看看 PHP_CodeSniffer。
我正在寻找一种工具,它可以检查我的 PHP 代码并根据 PSR 标准自动更新或至少指出代码违反 PSR 标准的地方。 Google 搜索不是很有帮助。有没有可以做到的工具?
对于 PSR-0、PSR-1 和 PSR-2 使用 the PHP coding standard fixer
通过作曲家安装它:
./composer.phar global require fabpot/php-cs-fixer
您可能想看看 PHP_CodeSniffer。