-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.51 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
47
48
49
50
51
52
{
"name": "t-works/ckeditor-sonata-media-bundlefork",
"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"
},
{
"name": "Jerzy Kurowski",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8",
"symfony/dependency-injection": "^6.1",
"symfony/http-foundation": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/security-core": "^6.1",
"symfony/config": "^6.1",
"sonata-project/media-bundle": "^4.1.5",
"sonata-project/admin-bundle": "^4.12"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4.19 || ^4.0",
"sonata-project/classification-bundle": "^4.0",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"egeloen/ckeditor-bundle": "for easy Symfony integration"
},
"autoload": {
"psr-4": {
"TWorks\\Bundle\\CKEditorSonataMediaBundlefork\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TWorks\\Bundle\\CKEditorSonataMediaBundlefork\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}