我想运行phpcs工具,但是此错误即将到来,ERROR: Referenced sniff "PHPCompatibility" does not exist
我运行了phpcs -i。那给了我,The installed coding standards are PEAR, PSR1, Zend, Squiz, PSR12, PSR2, MySource and PHPCompatibility.
但是总会出现这个错误,
错误:引用的嗅探“PHPCompatibility”不存在。
有什么原因吗?
最佳答案
根据当前的PHP Compatibility Coding Standard文档,您需要执行以下步骤:
composer.json
文件,并将以下行添加到:composer update
./vendor/bin/phpcs -p . --standard=PHPCompatibility
测试关于php - 运行phpcs时,出现: Referenced sniff "PHPCompatibility" does not exist is coming错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51096872/