diff options
-rw-r--r-- | Acl/composer.json | 1 | ||||
-rw-r--r-- | Acl/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | Core/composer.json | 1 | ||||
-rw-r--r-- | Core/phpunit.xml.dist | 4 | ||||
-rw-r--r-- | Csrf/composer.json | 1 | ||||
-rw-r--r-- | Csrf/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 |
10 files changed, 20 insertions, 5 deletions
diff --git a/Acl/composer.json b/Acl/composer.json index 917c061..7cd89a8 100644 --- a/Acl/composer.json +++ b/Acl/composer.json @@ -20,7 +20,6 @@ "symfony/security-core": "~2.4" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7", "doctrine/common": "~2.2", "doctrine/dbal": "~2.2", "psr/log": "~1.0" diff --git a/Acl/phpunit.xml.dist b/Acl/phpunit.xml.dist index 7552339..b252921 100644 --- a/Acl/phpunit.xml.dist +++ b/Acl/phpunit.xml.dist @@ -30,4 +30,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> diff --git a/Core/composer.json b/Core/composer.json index 38054df..c73a5b5 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -19,7 +19,6 @@ "php": ">=5.3.9" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7", "symfony/event-dispatcher": "~2.1", "symfony/expression-language": "~2.6", "symfony/http-foundation": "~2.4", 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/composer.json b/Csrf/composer.json index a0de39d..12077d4 100644 --- a/Csrf/composer.json +++ b/Csrf/composer.json @@ -20,7 +20,6 @@ "symfony/security-core": "~2.4" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7", "symfony/http-foundation": "~2.1" }, "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/Http/composer.json b/Http/composer.json index 7b08d00..1d40882 100644 --- a/Http/composer.json +++ b/Http/composer.json @@ -23,7 +23,6 @@ "symfony/http-kernel": "~2.4" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7", "symfony/routing": "~2.2", "symfony/security-csrf": "~2.4", "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 826dceb..f2c4e13 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,6 @@ }, "require-dev": { "symfony/finder": "~2.3", - "symfony/phpunit-bridge": "~2.7", "symfony/intl": "~2.3", "symfony/routing": "~2.2", "symfony/translation": "~2.0,>=2.0.5", diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 3e7ec38..681298e 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -31,4 +31,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> |