-
Notifications
You must be signed in to change notification settings - Fork 155
/
composer.json
43 lines (43 loc) · 1.24 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "stfalcon/tinymce-bundle",
"description": "This Bundle integrates TinyMCE WYSIWYG editor into a Symfony2 project.",
"keywords": ["wysiwyg", "tinymce", "editor", "symfony2", "bundle"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Stepan Tanasiychuk",
"homepage": "http://blog.stfalcon.com",
"email": "[email protected]"
},
{
"name": "Igor Negrutsa",
"homepage": "http://igor-negrutsa.info",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/stfalcon/TinymceBundle/contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/stfalcon/TinymceBundle/issues"
},
"require": {
"php": "^7.2.5|^8.0",
"symfony/framework-bundle": "^5.0|^6.0",
"twig/twig": "^2.12|^3.0"
},
"autoload": {
"psr-0": {
"Stfalcon\\Bundle\\TinymceBundle": ""
}
},
"target-dir" : "Stfalcon/Bundle/TinymceBundle",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}