skyzyx/php-strong-types

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "skyzyx/strong-types",
    "description": "Enables strong types for PHP. This allows for tighter validation, especially when accepting input from users.",
    "keywords": ["strong","type","hhvm"],
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Ryan Parman",
            "homepage": "http://ryanparman.com"
        }
    ],
    "support": {
        "issues": "https://github.com/skyzyx/php-strong-types/issues"
    },
    "require": {
        "php": ">= 5.4",
        "skyzyx/phpunit-result-printer": "^1.0"
    },
    "require-dev": {
        "codeclimate/php-test-reporter" : "*@dev",
        "d11wtq/boris"                  : "^1.0",
        "friendsofphp/php-cs-fixer"     : "^1.0",
        "pdepend/pdepend"               : "^2.2",
        "phpmd/phpmd"                   : "^2.4",
        "phpunit/phpcov"                : "^2.0|^3.1",
        "phpunit/phpunit"               : "^4.8|^5.0",
        "satooshi/php-coveralls"        : "*@dev",
        "squizlabs/php_codesniffer"     : "^2.6"
    },
    "suggest": {
        "mabrahamde/idna-converter": "Load this LGPLv2 dependency if you do not have the Intl extension installed."
    },
    "config": {
        "bin-dir": "bin/",
        "optimize-autoloader": true
    },
    "autoload": {
        "psr-4": {
            "Skyzyx\\StrongTypes\\"        : "src/StrongTypes/",
            "Skyzyx\\Tests\\StrongTypes\\" : "tests/StrongTypes/"
        }
    }
}