/phpqa

Docker image with quality analysis tools for PHP

Primary LanguageShellMIT LicenseMIT

Quality Analysis Tools for PHP

Docker image with quality analysis tools for PHP.

Build Status

Available tools

Running tools

Pull the image:

docker pull jakzal/phpqa

The default command will list available tools:

docker run -it --rm jakzal/phpqa

To run the selected tool inside the container, you'll need to mount the project directory on the container:

docker run -it --rm -v $(pwd):/project -w /project jakzal/phpqa phpstan analyse src

Building the image

git clone https://github.com/jakzal/phpqa.git
cd phpqa
make build

To build the alpine version:

make build-alpine