annotate vendor/symfony/routing/composer.json @ 13:5fb285c0d0e3

Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've been lucky to get away with this so far, as we don't support self-registration which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5 was vulnerable to.
author Chris Cannam
date Mon, 23 Apr 2018 09:33:26 +0100
parents 4c8ae668cc8c
children 1fec387a4317
rev   line source
Chris@0 1 {
Chris@0 2 "name": "symfony/routing",
Chris@0 3 "type": "library",
Chris@0 4 "description": "Symfony Routing Component",
Chris@0 5 "keywords": ["routing", "router", "URL", "URI"],
Chris@0 6 "homepage": "https://symfony.com",
Chris@0 7 "license": "MIT",
Chris@0 8 "authors": [
Chris@0 9 {
Chris@0 10 "name": "Fabien Potencier",
Chris@0 11 "email": "fabien@symfony.com"
Chris@0 12 },
Chris@0 13 {
Chris@0 14 "name": "Symfony Community",
Chris@0 15 "homepage": "https://symfony.com/contributors"
Chris@0 16 }
Chris@0 17 ],
Chris@0 18 "require": {
Chris@0 19 "php": ">=5.5.9"
Chris@0 20 },
Chris@0 21 "require-dev": {
Chris@0 22 "symfony/config": "~2.8|~3.0",
Chris@0 23 "symfony/http-foundation": "~2.8|~3.0",
Chris@0 24 "symfony/yaml": "~2.8|~3.0",
Chris@0 25 "symfony/expression-language": "~2.8|~3.0",
Chris@0 26 "doctrine/annotations": "~1.0",
Chris@0 27 "doctrine/common": "~2.2",
Chris@0 28 "psr/log": "~1.0"
Chris@0 29 },
Chris@0 30 "conflict": {
Chris@0 31 "symfony/config": "<2.8"
Chris@0 32 },
Chris@0 33 "suggest": {
Chris@0 34 "symfony/http-foundation": "For using a Symfony Request object",
Chris@0 35 "symfony/config": "For using the all-in-one router or any loader",
Chris@0 36 "symfony/yaml": "For using the YAML loader",
Chris@0 37 "symfony/expression-language": "For using expression matching",
Chris@0 38 "doctrine/annotations": "For using the annotation loader",
Chris@0 39 "symfony/dependency-injection": "For loading routes from a service"
Chris@0 40 },
Chris@0 41 "autoload": {
Chris@0 42 "psr-4": { "Symfony\\Component\\Routing\\": "" },
Chris@0 43 "exclude-from-classmap": [
Chris@0 44 "/Tests/"
Chris@0 45 ]
Chris@0 46 },
Chris@0 47 "minimum-stability": "dev",
Chris@0 48 "extra": {
Chris@0 49 "branch-alias": {
Chris@0 50 "dev-master": "3.2-dev"
Chris@0 51 }
Chris@0 52 }
Chris@0 53 }