composer.json
{
"name": "strident/router",
"type": "library",
"description": "Routing component designed for ease of use and speed. Built for Trident.",
"keywords": [ "router", "component", "trident" ],
"license": "MIT",
"homepage": "https://github.com/Strident/Router",
"authors": [
{
"name": "Elliot Wright",
"email": "elliot@elliotwright.co"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"codeclimate/php-test-reporter": "~0.1"
},
"autoload": {
"psr-4": { "Strident\\Router\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Strident\\Router\\Tests\\": "tests/" }
},
"minimum-stability": "dev"
}