diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:03:18 -0700 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:03:18 -0700 |
commit | 5656f5276179e7a3f10f830843b7fe07fc91b344 (patch) | |
tree | bdd61331bbe83fc79d8ad48c8b1b7ccd13bf9dce | |
parent | 7d1514eafc10e2083e8de969439a38708ebfe47f (diff) | |
parent | 747f59b9f1f14300f30c9098cb2f59788a057095 (diff) | |
download | symfony-security-5656f5276179e7a3f10f830843b7fe07fc91b344.zip symfony-security-5656f5276179e7a3f10f830843b7fe07fc91b344.tar.gz symfony-security-5656f5276179e7a3f10f830843b7fe07fc91b344.tar.bz2 |
minor #16397 added the new Composer exclude-from-classmap option (annesosensio)
This PR was merged into the 2.3 branch.
Discussion
----------
added the new Composer exclude-from-classmap option
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | n/a
| License | MIT
| Doc PR | n/a
Commits
-------
65bef75 added the new Composer exclude-from-classmap option
-rw-r--r-- | composer.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/composer.json b/composer.json index bc15cc8..ddc700a 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,10 @@ "paragonie/random_compat": "" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\": "" } + "psr-0": { "Symfony\\Component\\Security\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "target-dir": "Symfony/Component/Security", "minimum-stability": "dev", |