diff options
-rw-r--r-- | Core/composer.json | 1 | ||||
-rw-r--r-- | Core/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | Csrf/Tests/TokenStorage/SessionTokenStorageTest.php | 4 | ||||
-rw-r--r-- | Csrf/composer.json | 1 | ||||
-rw-r--r-- | Csrf/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | Guard/composer.json | 1 | ||||
-rw-r--r-- | Guard/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | Http/composer.json | 1 | ||||
-rw-r--r-- | Http/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | composer.json | 1 | ||||
-rw-r--r-- | phpunit.xml.dist | 4 |
11 files changed, 20 insertions, 9 deletions
diff --git a/Core/composer.json b/Core/composer.json index 860974e..bc14d0a 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -20,7 +20,6 @@ "paragonie/random_compat": "~1.0" }, "require-dev": { - "symfony/phpunit-bridge": "~2.8|~3.0", "symfony/event-dispatcher": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0", diff --git a/Core/phpunit.xml.dist b/Core/phpunit.xml.dist index 8a1a291..739cb6e 100644 --- a/Core/phpunit.xml.dist +++ b/Core/phpunit.xml.dist @@ -30,4 +30,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> diff --git a/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php b/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php index 4166c1e..0eac0a8 100644 --- a/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php +++ b/Csrf/Tests/TokenStorage/SessionTokenStorageTest.php @@ -32,10 +32,6 @@ class SessionTokenStorageTest extends \PHPUnit_Framework_TestCase protected function setUp() { - if (!interface_exists('Symfony\Component\HttpFoundation\Session\SessionInterface')) { - $this->markTestSkipped('The "HttpFoundation" component is not available'); - } - $this->session = $this->getMockBuilder('Symfony\Component\HttpFoundation\Session\SessionInterface') ->disableOriginalConstructor() ->getMock(); diff --git a/Csrf/composer.json b/Csrf/composer.json index 1510b1d..7366b02 100644 --- a/Csrf/composer.json +++ b/Csrf/composer.json @@ -21,7 +21,6 @@ "paragonie/random_compat": "~1.0" }, "require-dev": { - "symfony/phpunit-bridge": "~2.8|~3.0", "symfony/http-foundation": "~2.8|~3.0" }, "suggest": { diff --git a/Csrf/phpunit.xml.dist b/Csrf/phpunit.xml.dist index 8f950a3..3e3d430 100644 --- a/Csrf/phpunit.xml.dist +++ b/Csrf/phpunit.xml.dist @@ -30,4 +30,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> diff --git a/Guard/composer.json b/Guard/composer.json index ebb3546..d2a09b9 100644 --- a/Guard/composer.json +++ b/Guard/composer.json @@ -21,7 +21,6 @@ "symfony/security-http": "~2.8|~3.0" }, "require-dev": { - "symfony/phpunit-bridge": "~2.8|~3.0", "psr/log": "~1.0" }, "autoload": { diff --git a/Guard/phpunit.xml.dist b/Guard/phpunit.xml.dist index 093628b..99251f1 100644 --- a/Guard/phpunit.xml.dist +++ b/Guard/phpunit.xml.dist @@ -30,4 +30,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> diff --git a/Http/composer.json b/Http/composer.json index 76f1a8b..b7fe686 100644 --- a/Http/composer.json +++ b/Http/composer.json @@ -25,7 +25,6 @@ "paragonie/random_compat": "~1.0" }, "require-dev": { - "symfony/phpunit-bridge": "~2.8|~3.0", "symfony/routing": "~2.8|~3.0", "symfony/security-csrf": "~2.8|~3.0", "psr/log": "~1.0" diff --git a/Http/phpunit.xml.dist b/Http/phpunit.xml.dist index 49b36f2..33e60d7 100644 --- a/Http/phpunit.xml.dist +++ b/Http/phpunit.xml.dist @@ -30,4 +30,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> diff --git a/composer.json b/composer.json index af2c50b..3f317fe 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,6 @@ }, "require-dev": { "symfony/finder": "~2.8|~3.0", - "symfony/phpunit-bridge": "~2.8|~3.0", "symfony/intl": "~2.8|~3.0", "symfony/routing": "~2.8|~3.0", "symfony/translation": "~2.8|~3.0", diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 0d9fe5f..1ca767d 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -32,4 +32,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> |