diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:15:42 -0700 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-10-30 13:15:42 -0700 |
commit | a5072cd08357bc74a1188e3e14a929d2302735f6 (patch) | |
tree | e038cb19543402a5cd0e897f3f2ffc697a25cb56 | |
parent | 7c51b1c6f08ea0bfd4a44e8d0f202c6423a39587 (diff) | |
parent | d40f1a8a8c20a285e90ba448d9b28e15ac2a6ec8 (diff) | |
download | symfony-security-a5072cd08357bc74a1188e3e14a929d2302735f6.zip symfony-security-a5072cd08357bc74a1188e3e14a929d2302735f6.tar.gz symfony-security-a5072cd08357bc74a1188e3e14a929d2302735f6.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
added the new Composer exclude-from-classmap option
added the new Composer exclude-from-classmap option
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 beaae50..e89fb8d 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -39,7 +39,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 63a5c0b..4afc7ca 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 6e863db..3208920 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 686a629..24708ac 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 11b68d4..3ad9e14 100644 --- a/composer.json +++ b/composer.json @@ -60,7 +60,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": { |