alexpts/php-simple-middlewares

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "alexpts/php-simple-middlewares",
    "description": "Simple middlewares manager compatible with the PSR-7",
    "homepage": "https://github.com/alexpts/php-simple-middlewares",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "middleware",
        "psr-7"
    ],
    "config": {
        "optimize-autoloader": true
    },
    "authors": [{
        "name": "Alexpts",
        "email": "alexpts3@gmail.com"
    }],
    "minimum-stability": "stable",
    "require": {
        "php": ">7.1",
        "psr/http-message": "^1.0.1"

    },
    "require-dev": {
        "phpunit/phpunit": "6.5"
    },
    "autoload": {
        "psr-4": {
            "PTS\\Middleware\\": "src"
        }
    }
}