apollonin/numphp

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "apollonin/numphp",
  "type": "library",
  "description": "Library for numbers manipulation.",
  "version": "1.9.0",
  "keywords": [
    "numbers",
    "array",
    "filter"
  ],
  "license": "MIT",
  "require": {
    "php": ">=5.5.0"
  },
  "require-dev": {
    "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
  },
  "autoload": {
    "psr-4": {
      "numphp\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Tests\\": "tests/"
    }
  },
  "scripts": {
    "test": "./vendor/bin/phpunit"
  }
}