composer.json

Summary

Maintainability
Test Coverage
{
  "name": "stk2k/bench",
  "description": "Simple benchmark classes",
  "keywords": ["PHP","Benchmark"],
  "homepage": "https://github.com/stk2k/bench",
  "type": "library",
  "license": "MIT",
  "authors": [
    {
      "name": "Katsuki Shuto",
      "email": "stk2k@sazysoft.com"
    }
  ],
  "require": {
    "php": ">=7.2",
    "stk2k/util": "~0.1"
  },
  "require-dev": {
    "phpunit/phpunit": "^8.5.15",
    "php-coveralls/php-coveralls": "^2.0"
  },
  "autoload": {
    "psr-4": {
      "stk2k\\Bench\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "stk2k\\Bench\\Test\\": "test/"
    }
  }
}