From 7b256a985dd1ac832080e9967211fbf40f08da0d Mon Sep 17 00:00:00 2001 From: Albert Casademont Date: Fri, 19 Oct 2018 23:57:12 +0200 Subject: [PATCH] [Security] Fix "exclude-from-classmap" The "/Tests/" directory doesn't exist in the Security Component, tests are located within the Security components folders and none of the tests were being excluded in an --classmap-authoritative dump of the autoload. --- src/Symfony/Component/Security/composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json index 3e3468feb8..0a862add49 100644 --- a/src/Symfony/Component/Security/composer.json +++ b/src/Symfony/Component/Security/composer.json @@ -55,7 +55,10 @@ "autoload": { "psr-4": { "Symfony\\Component\\Security\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Core/Tests/", + "/Csrf/Tests/", + "/Guard/Tests/", + "/Http/Tests/" ] }, "minimum-stability": "dev",