Skip to content
This repository was archived by the owner on Feb 16, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public function registerBundles()
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
new Knp\Bundle\MenuBundle\KnpMenuBundle(),
new Eo\AirbrakeBundle\EoAirbrakeBundle(),
new SimpleBus\SymfonyBridge\DoctrineOrmBridgeBundle(),
new SimpleBus\SymfonyBridge\SimpleBusCommandBusBundle(),
new SimpleBus\SymfonyBridge\SimpleBusEventBusBundle(),

new SumoCoders\FrameworkCoreBundle\SumoCodersFrameworkCoreBundle(),
new SumoCoders\FrameworkSearchBundle\SumoCodersFrameworkSearchBundle(),
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
"sumocoders/framework-search-bundle": "^3.0",
"sumocoders/framework-example-bundle": "^4.0",
"sumocoders/framework-multi-user-bundle": "^4.0",
"knplabs/knp-paginator-bundle": "^2.5"
"knplabs/knp-paginator-bundle": "^2.5",
"simple-bus/symfony-bridge": "^4.1",
"simple-bus/doctrine-orm-bridge": "^4.0"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
Expand Down
250 changes: 237 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,9 @@ public function testCreationOfHtmlMessageWithAutomaticPlainText()
$expectedResult = <<<EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head></head>
<body>
<p>And I, le content</p>
</body>
<head></head>
<body><p>And I, le content</p></body>
</html>

EOF;

$message = $this->messageFactory->createHtmlMessage(
Expand Down