From 7ec805a4e74f7bdb780fbb5390382414fdc44ce3 Mon Sep 17 00:00:00 2001 From: Gabriel Albuquerque Date: Tue, 8 Sep 2020 09:18:41 -0300 Subject: [PATCH] :ambulance: Fixed: "Could not find package annotations" in composer require Apparently, the "annotations" package doesn't exists. I saw in packagist page that the routing component requires a 'doctrine/annotations: ~1.2'. Packagist symfony/routing url: https://packagist.org/packages/symfony/routing --- routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing.rst b/routing.rst index aa59369865e..fb7a6a4e67b 100644 --- a/routing.rst +++ b/routing.rst @@ -27,7 +27,7 @@ Run this command once in your application to add support for annotations: .. code-block:: terminal - $ composer require annotations + $ composer require doctrine/annotations In addition to installing the needed dependencies, this command creates the following configuration file: