Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[PhpUnitBridge] new bridge for testing with PHPUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Feb 18, 2015
1 parent 6fa94f2 commit 3f4445d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 15 deletions.
1 change: 1 addition & 0 deletions Acl/composer.json
Expand Up @@ -20,6 +20,7 @@
"symfony/security-core": "~2.4|~3.0.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0.0",
"doctrine/common": "~2.2",
"doctrine/dbal": "~2.2",
"psr/log": "~1.0"
Expand Down
4 changes: 1 addition & 3 deletions Acl/phpunit.xml.dist
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions Core/composer.json
Expand Up @@ -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",
Expand Down
4 changes: 1 addition & 3 deletions Core/phpunit.xml.dist
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions Csrf/composer.json
Expand Up @@ -20,6 +20,7 @@
"symfony/security-core": "~2.4|~3.0.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0.0",
"symfony/http-foundation": "~2.1|~3.0.0"
},
"suggest": {
Expand Down
4 changes: 1 addition & 3 deletions Csrf/phpunit.xml.dist
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions Http/composer.json
Expand Up @@ -23,6 +23,7 @@
"symfony/http-kernel": "~2.4|~3.0.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0.0",
"symfony/routing": "~2.2|~3.0.0",
"symfony/security-csrf": "~2.4|~3.0.0",
"psr/log": "~1.0"
Expand Down
4 changes: 1 addition & 3 deletions Http/phpunit.xml.dist
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions composer.json
Expand Up @@ -28,6 +28,7 @@
"symfony/security-http": "self.version"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0.0",
"symfony/intl": "~2.3|~3.0.0",
"symfony/routing": "~2.2|~3.0.0",
"symfony/translation": "~2.0,>=2.0.5|~3.0.0",
Expand Down
4 changes: 1 addition & 3 deletions phpunit.xml.dist
Expand Up @@ -7,9 +7,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>
Expand Down

0 comments on commit 3f4445d

Please sign in to comment.