atelierspierrot/validators

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "atelierspierrot/validators",
    "type": "library",
    "description": "PHP validators for RFC compliance",
    "keywords": [ "validator" ],
    "homepage": "http://github.com/atelierspierrot/validators",
    "license": "Apache-2.0",
    "authors": [{
        "name": "Les Ateliers Pierrot & contributors",
        "email": "contact@ateliers-pierrot.fr",
        "homepage": "http://www.ateliers-pierrot.fr/"
    },{
        "name": "Pierre Cassat",
        "homepage": "http://e-piwi.fr/"
    }],
    "require": { "php": ">=5.3.0" },
    "require-dev": {
        "sami/sami": "@stable",
        "phpunit/phpunit": "@stable",
        "phpmd/phpmd" : "@stable",
        "fabpot/php-cs-fixer": "@stable"
    },
    "autoload": { "psr-4": { "Validator\\": "src/Validator/" } },
    "scripts": {
        "test": "php vendor/bin/phpunit",
        "build-doc": "php vendor/bin/sami.php update .sami.php",
        "update-doc": "php vendor/bin/sami.php update .sami.php",
        "cs-fixer": "php vendor/bin/php-cs-fixer fix -v"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.1-dev"
        }
    }
}