Autoload tests namespace

This commit is contained in:
Oliver Davies 2017-11-14 20:45:38 +00:00
parent fd08a62c32
commit 3bd1f37032
2 changed files with 6 additions and 1 deletions

View file

@ -27,6 +27,11 @@
}, },
"files": ["src/helpers.php"] "files": ["src/helpers.php"]
}, },
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": { "extra": {
"merge-plugin": { "merge-plugin": {
"include": [ "include": [

View file

@ -1,6 +1,6 @@
<?php <?php
namespace FormatTalksBundle\Tests\Twig; namespace Tests\FormatTalksBundle\Twig;
use DateTime; use DateTime;
use FormatTalksBundle\Twig\FormatTalksExtension; use FormatTalksBundle\Twig\FormatTalksExtension;