PHPCS / PHPCBF与Grunt没有全局安装

时间:2015-12-17 15:53:27

标签: php gruntjs codesniffer

我们使用Bower和Grunt。

运行bower install后,我得到一个bower_components/phpcs目录。

我的咕噜声任务设置如下:

phpcbf: {
    application: {
        src: ['*.php']
    },
    options: {
        bin: 'bower_components/phpcs',
    }
}

但是,当我运行grunt phpcbf时,我收到错误bower_components/phpcs: is a directory.

是否可以在不执行pear或composer安装的情况下运行它?

1 个答案:

答案 0 :(得分:1)

我将bin的路径切换到了二进制文件,它运行得很好

bin: 'bower_components/phpcs/scripts/phpcs'