annotate vendor/symfony-cmf/routing/composer.json @ 5:12f9dff5fda9
tip
Update to Drupal core 8.7.1
author |
Chris Cannam |
date |
Thu, 09 May 2019 15:34:47 +0100 |
parents |
c75dbcec494b |
children |
|
rev |
line source |
Chris@0
|
1 {
|
Chris@0
|
2 "name": "symfony-cmf/routing",
|
Chris@0
|
3 "type": "library",
|
Chris@0
|
4 "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
|
Chris@0
|
5 "keywords": ["routing", "database"],
|
Chris@0
|
6 "homepage": "http://cmf.symfony.com",
|
Chris@0
|
7 "license": "MIT",
|
Chris@0
|
8 "authors": [
|
Chris@0
|
9 {
|
Chris@0
|
10 "name": "Symfony CMF Community",
|
Chris@0
|
11 "homepage": "https://github.com/symfony-cmf/Routing/contributors"
|
Chris@0
|
12 }
|
Chris@0
|
13 ],
|
Chris@0
|
14 "require": {
|
Chris@0
|
15 "php": "^5.3.9|^7.0",
|
Chris@0
|
16 "symfony/routing": "^2.2|3.*",
|
Chris@0
|
17 "symfony/http-kernel": "^2.2|3.*",
|
Chris@0
|
18 "psr/log": "1.*"
|
Chris@0
|
19 },
|
Chris@0
|
20 "require-dev": {
|
Chris@0
|
21 "symfony-cmf/testing": "^1.3",
|
Chris@0
|
22 "symfony/dependency-injection": "^2.0.5|3.*",
|
Chris@0
|
23 "symfony/config": "^2.2|3.*",
|
Chris@0
|
24 "symfony/event-dispatcher": "^2.1|3.*",
|
Chris@0
|
25 "friendsofsymfony/jsrouting-bundle": "^1.1"
|
Chris@0
|
26 },
|
Chris@0
|
27 "suggest": {
|
Chris@0
|
28 "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
|
Chris@0
|
29 },
|
Chris@0
|
30 "autoload": {
|
Chris@0
|
31 "psr-4": {
|
Chris@0
|
32 "Symfony\\Cmf\\Component\\Routing\\": ""
|
Chris@0
|
33 }
|
Chris@0
|
34 },
|
Chris@0
|
35 "extra": {
|
Chris@0
|
36 "branch-alias": {
|
Chris@0
|
37 "dev-master": "1.4-dev"
|
Chris@0
|
38 }
|
Chris@0
|
39 }
|
Chris@0
|
40 }
|