Skip to content

Commit 3ade792

Browse files
author
Simon Guionniere
authored
Merge pull request #108 from jmsche/symfony-5
Added support for Symfony 5.0+ and Twig 3
2 parents 5afe67f + e4156f3 commit 3ade792

3 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG-3.x.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG FOR 3.X
22
=================
33

4+
3.0.3
5+
-----
6+
7+
* Added support for Symfony 5.0+ and Twig 3
8+
49
3.0.2
510
-----
611

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Introduction
99

10-
This bundle aims to easily integrate & use the Froala editor in Symfony 4.3+.
10+
This bundle aims to easily integrate & use the Froala editor in Symfony 4.3+/5.0+.
1111

1212
If you want to use it with Symfony < 4.3, see [v2 docs](https://github.com/froala/KMSFroalaEditorBundle/tree/v2).
1313
v2.x is compatible with Symfony 2.x to 4.x, but some deprecations are not fixed and static files are integrated to the

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kms/froala-editor-bundle",
33
"type": "symfony-bundle",
4-
"description": "Provides a Froala editor integration for Symfony 4.",
4+
"description": "Provides a Froala editor integration for Symfony 4 & 5.",
55
"keywords": [ "froala", "editor", "wysiwyg" ],
66
"license": "MIT",
77
"authors": [
@@ -18,15 +18,15 @@
1818
"php": "^7.1.3",
1919
"ext-zip": "*",
2020
"doctrine/inflector": "^1.3",
21-
"symfony/console": "^4.3",
22-
"symfony/framework-bundle": "^4.3",
23-
"symfony/form": "^4.3",
24-
"symfony/http-client": "^4.3",
25-
"symfony/twig-bundle": "^4.3",
26-
"twig/twig": "^1.1|^2.0"
21+
"symfony/console": "^4.3|^5.0",
22+
"symfony/framework-bundle": "^4.3|^5.0",
23+
"symfony/form": "^4.3|^5.0",
24+
"symfony/http-client": "^4.3|^5.0",
25+
"symfony/twig-bundle": "^4.3|^5.0",
26+
"twig/twig": "^1.1|^2.0|^3.0"
2727
},
2828
"require-dev": {
29-
"symfony/yaml": "^4.3"
29+
"symfony/yaml": "^4.3|^5.0"
3030
},
3131
"autoload": {
3232
"psr-4": { "KMS\\FroalaEditorBundle\\": "" }

0 commit comments

Comments
 (0)