victormln/docker-php-testing

一个PHP 8.1和测试工具(PHPUnit + Infection)的项目模板

安装: 16

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

语言:Dockerfile

类型:模板

8.2 2023-03-20 17:18 UTC

This package is auto-updated.

Last update: 2024-09-18 20:59:41 UTC


README

PHP Version

简介

模板仓库包含PHP + Xdebug + 测试工具(PHPUnit + Infection)

模板中包含什么

  • PHP-fpm
  • php.ini已准备供您自行编辑
  • Composer
  • Makefile
  • Xdebug
  • PHPUnit
  • Infection

安装

  1. 通过Composer
$ composer create-project victormln/docker-php-testing your-project

或使用git

$ git clone https://github.com/victormln/docker-php-testing.git your-project
$ cd your-project
$ make install
  1. 执行PHPUnit
$ make test
  1. 执行Infection
$ make infection