alexpts/php-psr15-routing

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "alexpts/php-psr15-routing",
    "description": "Middleware routing compatible with the PSR-7 and PSR-15",
    "homepage": "https://github.com/alexpts/php-psr15-routing",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "middleware",
        "router",
        "routing",
        "psr-7",
        "psr-15"
    ],
    "optimize-autoloader": true,
    "authors": [
        {
            "name": "Alexpts",
            "email": "alexpts3@gmail.com"
        }
    ],
    "minimum-stability": "stable",
    "require": {
        "php": "~7.2",
        "psr/http-message": "^1.0",
        "psr/http-server-middleware": "^1.0",
        "alexpts/php-tools": "^3.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.2"
    },
    "autoload": {
        "psr-0": {
            "PTS\\PSR15Routing": "src",
            "PTS\\EndPoint": "src"
        }
    }
}