diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 16:35:59 -0700 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 16:35:59 -0700 |
commit | 5c0b69ecabbb26a1181d3f25b7e6434bd47d977e (patch) | |
tree | f6c1eadcb5a2d914de3c9c333618804c377e7cc5 | |
parent | 40a25d2e48d36694d5473406f6e1c708cf8fc6a0 (diff) | |
parent | a5072cd08357bc74a1188e3e14a929d2302735f6 (diff) | |
download | symfony-security-5c0b69ecabbb26a1181d3f25b7e6434bd47d977e.zip symfony-security-5c0b69ecabbb26a1181d3f25b7e6434bd47d977e.tar.gz symfony-security-5c0b69ecabbb26a1181d3f25b7e6434bd47d977e.tar.bz2 |
Merge branch '2.8'
* 2.8:
added the new Composer exclude-from-classmap option
added the new Composer exclude-from-classmap option
fix docblock description for the build() method
fix expected argument type docblock
Set back libxml settings after testings.
fixed Twig deprecation notices
-rw-r--r-- | Core/composer.json | 5 | ||||
-rw-r--r-- | Csrf/composer.json | 5 | ||||
-rw-r--r-- | Guard/composer.json | 5 | ||||
-rw-r--r-- | Http/composer.json | 5 | ||||
-rw-r--r-- | composer.json | 5 |
5 files changed, 20 insertions, 5 deletions
diff --git a/Core/composer.json b/Core/composer.json index d25400f..502a6de 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -37,7 +37,10 @@ "symfony/ldap": "For using LDAP integration" }, "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 376db29..341a860 100644 --- a/Csrf/composer.json +++ b/Csrf/composer.json @@ -28,7 +28,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/Guard/composer.json b/Guard/composer.json index 68f5ac3..99dff9c 100644 --- a/Guard/composer.json +++ b/Guard/composer.json @@ -24,7 +24,10 @@ "psr/log": "~1.0" }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\Guard\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Guard\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { diff --git a/Http/composer.json b/Http/composer.json index 3fad2bb..a3e008a 100644 --- a/Http/composer.json +++ b/Http/composer.json @@ -35,7 +35,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": { diff --git a/composer.json b/composer.json index 1921bdd..8803e72 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,10 @@ "symfony/ldap": "For using the LDAP user and authentication providers" }, "autoload": { - "psr-4": { "Symfony\\Component\\Security\\": "" } + "psr-4": { "Symfony\\Component\\Security\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "minimum-stability": "dev", "extra": { |