diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:13:17 -0700 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:13:17 -0700 |
commit | d40f1a8a8c20a285e90ba448d9b28e15ac2a6ec8 (patch) | |
tree | df431b395ba5e881506734792e53634b2c82d515 /Core | |
parent | 1c8483382c1b50acbb9c0e2e3f80a26da32f14b1 (diff) | |
download | symfony-security-d40f1a8a8c20a285e90ba448d9b28e15ac2a6ec8.zip symfony-security-d40f1a8a8c20a285e90ba448d9b28e15ac2a6ec8.tar.gz symfony-security-d40f1a8a8c20a285e90ba448d9b28e15ac2a6ec8.tar.bz2 |
added the new Composer exclude-from-classmap option
Diffstat (limited to 'Core')
-rw-r--r-- | Core/composer.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Core/composer.json b/Core/composer.json index c73a5b5..5672a28 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -35,7 +35,10 @@ "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5" }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\Core\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Core\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { |