Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## dev-master

- Removed dependency on JMS Translation Bundle. If you have no other need for this bundle it can be removed by running
`composer remove jms/translation-bundle` and taking the relevant line out of `config/bundles.php` (or
`app/AppKernel.php` for projects that do not use Flex)

## [2.0.4](https://github.com/comur/ComurImageBundle/tree/2.0.4) (2019-05-31)
[Full Changelog](https://github.com/comur/ComurImageBundle/compare/2.0.3...2.0.4)

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ return [
// ...
Comur\ImageBundle\ComurImageBundle::class => ['all' => true],
FOS\JsRoutingBundle\FOSJsRoutingBundle::class => ['all' => true],
JMS\TranslationBundle\JMSTranslationBundle::class => ['all' => true],
];
```

Expand Down Expand Up @@ -165,7 +164,6 @@ class AppKernel extends Kernel
// ...
new Comur\ImageBundle\ComurImageBundle(),
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
new JMS\TranslationBundle\JMSTranslationBundle(),
];

// ...
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
"symfony/validator": "~3.4 || ~4.2",
"symfony/routing": "~3.4 || ~4.2",
"symfony/config": "~3.4 || ~4.2",
"symfony/translation": "^3.4 || ~4.2",
"symfony/twig-bridge": "~3.4 || ~4.2",
"twig/twig": "~1.35 || ~2.5",
"twig/extensions": "~1.0",
"friendsofsymfony/jsrouting-bundle": "@stable",
"jms/translation-bundle": "^1.2.2"
"friendsofsymfony/jsrouting-bundle": "@stable"
},
"autoload": {
"psr-4": {
Expand Down