├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── composer.json ├── package.json ├── php └── modules │ └── Grunt │ └── PhpCs │ └── World.php └── tasks └── phpcs.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | composer.lock 5 | vendor 6 | .DS_Store -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .npm-debug.log 3 | tmp 4 | composer.lock 5 | vendor -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/package.json -------------------------------------------------------------------------------- /php/modules/Grunt/PhpCs/World.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/php/modules/Grunt/PhpCs/World.php -------------------------------------------------------------------------------- /tasks/phpcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaschaGalley/grunt-phpcs/HEAD/tasks/phpcs.js --------------------------------------------------------------------------------