[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.
This commit is contained in:
Albert Casademont 2018-10-19 23:57:12 +02:00 committed by GitHub
parent 8322494a47
commit 7b256a985d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,10 @@
"autoload": { "autoload": {
"psr-4": { "Symfony\\Component\\Security\\": "" }, "psr-4": { "Symfony\\Component\\Security\\": "" },
"exclude-from-classmap": [ "exclude-from-classmap": [
"/Tests/" "/Core/Tests/",
"/Csrf/Tests/",
"/Guard/Tests/",
"/Http/Tests/"
] ]
}, },
"minimum-stability": "dev", "minimum-stability": "dev",