diff options
author | Ryan Weaver <ryan@thatsquality.com> | 2015-09-26 10:16:59 -0400 |
---|---|---|
committer | Ryan Weaver <ryan@thatsquality.com> | 2015-09-26 10:16:59 -0400 |
commit | 555335ad2110d0e312bca5259e864d1db1737c49 (patch) | |
tree | bcc88da3eaf21be6623ed0350c08d1fba96288df /Guard | |
parent | 5c71d179238b5bc79faa3d72db56ff61b3aacbeb (diff) | |
download | symfony-security-555335ad2110d0e312bca5259e864d1db1737c49.zip symfony-security-555335ad2110d0e312bca5259e864d1db1737c49.tar.gz symfony-security-555335ad2110d0e312bca5259e864d1db1737c49.tar.bz2 |
Minor tweaks - lowering the required security-http requirement and nulling out a test field
Diffstat (limited to 'Guard')
-rw-r--r-- | Guard/Tests/Firewall/GuardAuthenticationListenerTest.php | 1 | ||||
-rw-r--r-- | Guard/composer.json | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Guard/Tests/Firewall/GuardAuthenticationListenerTest.php b/Guard/Tests/Firewall/GuardAuthenticationListenerTest.php index 8fab399..26d17dd 100644 --- a/Guard/Tests/Firewall/GuardAuthenticationListenerTest.php +++ b/Guard/Tests/Firewall/GuardAuthenticationListenerTest.php @@ -218,5 +218,6 @@ class GuardAuthenticationListenerTest extends \PHPUnit_Framework_TestCase $this->event = null; $this->logger = null; $this->request = null; + $this->rememberMeServices = null; } } diff --git a/Guard/composer.json b/Guard/composer.json index 1e0dc8c..176754e 100644 --- a/Guard/composer.json +++ b/Guard/composer.json @@ -18,7 +18,7 @@ "require": { "php": ">=5.3.9", "symfony/security-core": "~2.8|~3.0.0", - "symfony/security-http": "~2.8|~3.0.0" + "symfony/security-http": "~2.7|~3.0.0" }, "require-dev": { "symfony/phpunit-bridge": "~2.8|~3.0.0", |