-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcomposer.json
46 lines (46 loc) · 1.37 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
44
45
46
{
"name": "tilleuls/ckeditor-sonata-media-bundle",
"type": "symfony-bundle",
"description": "Integrates SonataMediaBundle with CKEditor",
"keywords": ["media", "ckeditor", "upload", "file", "image", "sonata"],
"homepage": "http://les-tilleuls.coop",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "http://dunglas.fr"
}
],
"require": {
"php": ">=8.1",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/security-core": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"sonata-project/media-bundle": "^3.0 || ^4.10",
"sonata-project/admin-bundle": "^3.40 || ^4.28"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.4 || ^6.3 || ^7.0"
},
"suggest": {
"egeloen/ckeditor-bundle": "for easy Symfony integration"
},
"autoload": {
"psr-4": {
"CoopTilleuls\\Bundle\\CKEditorSonataMediaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoopTilleuls\\Bundle\\CKEditorSonataMediaBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}