Kylob/BootPress

View on GitHub
src/Auth/composer.json

Summary

Maintainability
Test Coverage
{
    "name": "bootpress/auth",
    "description": "Manages users, and logs them in securely using the definitive best practices known to man.",
    "keywords": ["bootpress", "analytics", "tracker"],
    "license": "MIT",
    "authors": [
        {
            "name": "Kyle Gadd",
            "email": "kyle.gadd@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.4",
        "bootpress/page": "^1.0",
        "bootpress/sqlite": "^1.0",
        "symfony/yaml": "^2.3||^3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.0",
        "friendsofphp/php-cs-fixer": "^1.0",
        "squizlabs/php_codesniffer": "^2.5"
    },
    "suggest": {
        "paragonie/random_compat": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
        "ircmaxell/password-compat": "PHP 5.5 password_* functions, with forward-compatible support."
    },
    "autoload": {
        "psr-4": { "BootPress\\Auth\\": "src" }
    }
}