diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-01-13 15:17:46 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-02-18 11:38:04 +0100 |
commit | 3f4445d6fc2a41eb27b342fbbf0a6eafeeb80b40 (patch) | |
tree | 883a12709c863e6cefde55b91909945c4d483d6e /Core | |
parent | 6fa94f258d7739d5b5c6063716725204c6745a87 (diff) | |
download | symfony-security-3f4445d6fc2a41eb27b342fbbf0a6eafeeb80b40.zip symfony-security-3f4445d6fc2a41eb27b342fbbf0a6eafeeb80b40.tar.gz symfony-security-3f4445d6fc2a41eb27b342fbbf0a6eafeeb80b40.tar.bz2 |
[PhpUnitBridge] new bridge for testing with PHPUnit
Diffstat (limited to 'Core')
-rw-r--r-- | Core/composer.json | 1 | ||||
-rw-r--r-- | Core/phpunit.xml.dist | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Core/composer.json b/Core/composer.json index 4541f41..f5e3179 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -19,6 +19,7 @@ "php": ">=5.3.9" }, "require-dev": { + "symfony/phpunit-bridge": "~2.7|~3.0.0", "symfony/event-dispatcher": "~2.1|~3.0.0", "symfony/expression-language": "~2.6|~3.0.0", "symfony/http-foundation": "~2.4|~3.0.0", diff --git a/Core/phpunit.xml.dist b/Core/phpunit.xml.dist index 7a5f7da..8a1a291 100644 --- a/Core/phpunit.xml.dist +++ b/Core/phpunit.xml.dist @@ -12,9 +12,7 @@ bootstrap="vendor/autoload.php" > <php> - <!-- Disable E_USER_DEPRECATED until 3.0 --> - <!-- php -r 'echo -1 & ~E_USER_DEPRECATED;' --> - <ini name="error_reporting" value="-16385"/> + <ini name="error_reporting" value="-1" /> </php> <testsuites> |