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 | |
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
-rw-r--r-- | Acl/composer.json | 5 | ||||
-rw-r--r-- | Core/composer.json | 5 | ||||
-rw-r--r-- | Csrf/composer.json | 5 | ||||
-rw-r--r-- | Http/composer.json | 5 |
4 files changed, 16 insertions, 4 deletions
diff --git a/Acl/composer.json b/Acl/composer.json index 7cd89a8..b292742 100644 --- a/Acl/composer.json +++ b/Acl/composer.json @@ -30,7 +30,10 @@ "doctrine/dbal": "For using the built-in ACL implementation" }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\Acl\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Acl\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { 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": { diff --git a/Csrf/composer.json b/Csrf/composer.json index 12077d4..2930e32 100644 --- a/Csrf/composer.json +++ b/Csrf/composer.json @@ -26,7 +26,10 @@ "symfony/http-foundation": "For using the class SessionTokenStorage." }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { diff --git a/Http/composer.json b/Http/composer.json index 1d40882..1b36428 100644 --- a/Http/composer.json +++ b/Http/composer.json @@ -32,7 +32,10 @@ "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs" }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\Http\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Http\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { |