[TwigBundle] Added missing files for phpunit

This commit is contained in:
Martin Hasoň 2013-05-16 11:58:37 +02:00
parent ffccc1af29
commit 29522695d3
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>