composer.json
{
"name": "alexpts/php-routing",
"description": "Simple router compatible with the PSR-7",
"homepage": "https://github.com/alexpts/php-routing",
"optimize-autoloader": true,
"license": "MIT",
"type": "library",
"keywords": [
"router",
"psr-7"
],
"authors": [{
"name": "Alexpts",
"email": "alexpts3@gmail.com"
}],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0.1",
"alexpts/php-tools": "^3.1"
},
"require-dev": {
"zendframework/zend-diactoros": "^1.7",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-0": {
"PTS\\Routing": "src"
}
}
}