stingus/phpdt

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "stingus/phpdt",
  "type": "library",
  "description": "PHP data type validation: primitives (int, double, bool, array, string) and objects",
  "keywords": ["strict", "type", "integer", "double", "string", "boolean", "array", "object"],
  "homepage": "https://github.com/stingus/phpdt",
  "minimum-stability": "stable",
  "license": "MIT",
  "authors": [
    {
      "name": "Arthur Kerpician",
      "email": "arthur@bluechip.ro"
    }
  ],
  "autoload": {
    "psr-4": {
      "PHPdt\\": "src/PHPdt/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "PHPdt\\UnitTest\\": "tests/UnitTest"
    }
  },
  "require": {
    "php": ">=5.6"
  },
  "require-dev": {
    "phpunit/phpunit": "~5",
    "squizlabs/php_codesniffer":   "~2",
    "codeclimate/php-test-reporter": "^0"
  }
}