minor #13099 [2.6] silence deprecation notices in new components (nicolas-grekas)

This PR was merged into the 2.6 branch.

Discussion
----------

[2.6] silence deprecation notices in new components

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Commits
-------

b0a156f [2.6] silence deprecation notices in new components
This commit is contained in:
Fabien Potencier 2014-12-25 11:07:53 +01:00
commit 0a2879e79b
3 changed files with 9 additions and 3 deletions

View File

@ -6,7 +6,10 @@
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) -->
<ini name="error_reporting" value="-16385"/>
</php>
<testsuites>
<testsuite name="Symfony DebugBundle Test Suite">
<directory>./Tests/</directory>

View File

@ -17,7 +17,7 @@
],
"require": {
"php": ">=5.3.3",
"symfony/dependency-injection" : "~2.5,>=2.5.3",
"symfony/dependency-injection" : "~2.6,>=2.6.2",
"symfony/config" : "~2.4",
"symfony/event-dispatcher": "~2.5",
"symfony/http-foundation": "~2.4,>=2.4.9",

View File

@ -6,7 +6,10 @@
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) -->
<ini name="error_reporting" value="-16385"/>
</php>
<testsuites>
<testsuite name="Symfony VarDumper Component Test Suite">
<directory>./Tests/</directory>