merged branch hason/twig_bundle (PR #8062)

This PR was merged into the 2.3 branch.

Discussion
----------

[TwigBundle] Added missing files for phpunit

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

Commits
-------

2952269 [TwigBundle] Added missing files for phpunit
This commit is contained in:
Fabien Potencier 2013-05-19 21:21:42 +02:00
commit e4b900e137
2 changed files with 36 additions and 2 deletions

View File

@ -17,10 +17,13 @@
],
"require": {
"php": ">=5.3.3",
"symfony/twig-bridge": "2.2.*"
"symfony/twig-bridge": "~2.2",
"symfony/http-kernel": "~2.1"
},
"require-dev": {
"symfony/stopwatch": "~2.2"
"symfony/stopwatch": "~2.2",
"symfony/dependency-injection": "~2.0",
"symfony/config": "~2.2"
},
"autoload": {
"psr-0": { "Symfony\\Bundle\\TwigBundle\\": "" }

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="Symfony TwigBundle Test Suite">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./Resources</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>