forked from eckinox/tinymce-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 986 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 986 Bytes
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
{
"name": "eckinox/tinymce-bundle",
"description": "A Symfony bundle to add TinyMCE in your apps and forms.",
"type": "symfony-bundle",
"require": {
"php": "^8.0",
"symfony/asset": "^4.0|^5.0|^6.0|^7.0",
"symfony/http-foundation": "^4.0|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0",
"symfony/form": "^4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0|^7.0",
"symfony/routing": "^4.0|^5.0|^6.0|^7.0",
"twig/twig": "^3.3"
},
"require-dev": {
"eckinox/eckinox-cs": "^2.0"
},
"autoload": {
"psr-4": {
"Eckinox\\TinymceBundle\\": "src/"
}
},
"authors": [
{
"name": "Émile Perron",
"email": "contact@emileperron.com"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"eckinox/installer-plugin": true
}
}
}