Sign inSign up

willhallonline/phpcs

By willhallonline

Updated over 7 years ago

Dockerised build of PHPCodesniffer

Image
2

10K+

willhallonline/phpcs repository overview

Docker PHPCS

PHPCodeSniffer inside a container!

Docker Pulls MicroBadger Layers Docker Automated build Docker Build Status

What is PHPCS?

PHP_CodeSniffer is a set of two PHP scripts; the main phpcs script that tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard, and a second phpcbf script to automatically correct coding standard violations. PHP_CodeSniffer is an essential development tool that ensures your code remains clean and consistent.

This is a Dockerised Solution for running PHPCS.

Docker Commands

Pull
docker pull willhallonline/phpcs
docker pull willhallonline/phpcs:stretch
Run
PHPCS (PHP CodeSniffer)
docker run -it --rm -v $(pwd):/app willhallonline/phpcs phpcs [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:stretch phpcs [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:2.9 phpcs [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:2.9-stretch phpcs [YOUR-CODE]
PHPCBF (PHP CodeFixer)
docker run -it --rm -v $(pwd):/app willhallonline/phpcs phpcbf [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:alpine phpcbf [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:2.9 phpcbf [YOUR-CODE]
docker run -it --rm -v $(pwd):/app willhallonline/phpcs:2.9-alpine phpcbf [YOUR-CODE]

Maintainer

Tag summary

Content type

Image

Digest

Size

49.9 MB

Last updated

over 7 years ago

docker pull willhallonline/phpcs