Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

tommy-muehle/awesome-dockerized-php-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

Awesome Dockerized PHP tools

A curated list of amazingly awesome Dockerized PHP tools.

These Docker images fulfil the following requirements:

  • The Docker image must be availabe via Docker Hub
  • The Dockerfile source must be available (on Github, Bitbucket, ...)
  • The Docker image do support the current version of the contained PHP tool
  • (The Docker image are based on Alpine Linux for minimimal filesize usage)

Codeception

Codeception is a modern full-stack testing framework for PHP.

Project Docker Hub Dockerfile Repository

Usage:

docker run -v ${PWD}:/project codeception/codeception run

Composer

Composer is a tool for dependency management in PHP, written in PHP.

Project Docker Hub Dockerfile Repository

Usage:

docker run --rm --interactive --tty --volume $PWD:/app composer install

Humbug

Humbug is a Mutation Testing framework for PHP to measure the real effectiveness of your test suites and assist in their improvement.

Project Docker Hub Dockerfile Repository

Usage:

docker run -v $PWD:/app --rm dockerizedphp/humbug

PHPCBF

PHP_CodeSniffer's phpcbf is a script to automatically correct coding standard violations.

Project Docker Hub Dockerfile Repository

Usage:

docker run --rm --user $(id -u):$(id -g) -v $(pwd):/project herloct/phpcbf

PHPCS Fixer

PHP_CodeSniffer tokenizes PHP and detects violations of a defined set of coding standards.

Project Docker Hub Dockerfile Repository

Usage:

docker run --rm -v /local/path:/project herloct/phpcs

PHP Coding Standards Fixer

The Coding Standards fixer for your code.

Project Docker Hub Dockerfile Repository

Usage:

docker run --rm --user $(id -u):$(id -g) -v /local/path:/project herloct/php-cs-fixer

PHPLOC

A tool for quickly measuring the size of a PHP project.

Project Docker Hub Dockerfile Repository

Usage:

docker run -v $PWD:/app --rm dockerizedphp/phploc

PHPStan

PHP Static Analysis Tool - discover bugs in your code without running it!

Project Docker Hub Dockerfile Repository

Usage:

docker run -v $PWD:/app --rm phpstan/phpstan analyse /app/src

PHPUnit

The PHP Unit Testing framework.

Project Docker Hub Dockerfile Repository

Usage:

docker run -v $(pwd):/app --rm phpunit/phpunit run

Security-Checker

Check your PHP project for known security issues!

Project Docker Hub Dockerfile Repository

Usage:

docker run --rm -v $(pwd)/composer.lock:/composer.lock jsixc/sensiolabs-security-checker:7.1

About

List of awesome Dockerized PHP tools.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published