49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "symfony-cmf/routing",
|
|
"type": "library",
|
|
"description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
|
|
"keywords": [
|
|
"routing",
|
|
"database"
|
|
],
|
|
"homepage": "http://cmf.symfony.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Symfony CMF Community",
|
|
"homepage": "https://github.com/symfony-cmf/Routing/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.2 || ^8.0",
|
|
"symfony/routing": "^4.4 || ^5.0",
|
|
"symfony/http-kernel": "^4.4 || ^5.0",
|
|
"psr/log": "^1.0 || ^2.0 || ^3.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/phpunit-bridge": "^5.0",
|
|
"symfony/dependency-injection": "^4.4 || ^5.0",
|
|
"symfony/config": "^4.4 || ^5.0",
|
|
"symfony/event-dispatcher": "^4.4 || ^5.0",
|
|
"symfony-cmf/testing": "^3@dev"
|
|
},
|
|
"suggest": {
|
|
"symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Symfony\\Cmf\\Component\\Routing\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Symfony\\Cmf\\Component\\Routing\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev"
|
|
}
|
|
}
|
|
}
|