资源介绍
Magento编码标准
一套工具的Magento规则。
在Magento 2站点内安装
要在您的Magento 2项目中使用,可以使用:
composer require --dev magento/magento-coding-standard
出于安全考虑,以这种方式安装时,无法自动添加phpcs的Magento标准。 您可以通过将以下内容添加到项目的composer.json来实现此目的:
" scripts " : {
" post-install-cmd " : [
" ([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/) "
],
" post-upda