T-Regx/covers-ignore

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "rawr/covers-ignore",
  "description": "Script to remove PhpUnit @covers annotations from project",
  "type": "library",
  "license": "MIT",
  "scripts": {
    "test": "phpunit test --no-coverage"
  },
  "bin": [
    "bin/covers-ignore"
  ],
  "autoload": {
    "psr-4": {
      "TRegx\\CoversIgnore\\": "src/CoversIgnore/"
    }
  },
  "autoload-dev": {
    "classmap": [
      "test/"
    ],
    "files": [
      "test/resource/resource.php",
      "test/output/output.php"
    ],
    "psr-4": {
      "Test\\": "test/"
    }
  },
  "require": {
    "php": "^8.0.0",
    "nikic/php-parser": "^2.0|^3.0|^4.0"
  },
  "require-dev": {
    "phpunit/phpunit": "^9.0",
    "mikey179/vfsstream": "^1.6"
  },
  "composer-runtime-api": "^2.2"
}