-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nucleos/sonata-ckeditor-bundle",
"description": "Symfony Bundle that allows sonata media management for the CKEditor.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"sonata",
"sonata-media",
"ckeditor",
"autoconfigure"
],
"authors": [
{
"name": "Christian Gripp",
"email": "mail@core23.de"
}
],
"homepage": "https://nucleos.rocks",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/core23"
},
{
"type": "opencollective",
"url": "https://opencollective.com/core23"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/core23"
},
{
"type": "other",
"url": "https://donate.core23.de"
}
],
"require": {
"php": "^8.1",
"friendsofsymfony/ckeditor-bundle": "^2.3",
"sonata-project/admin-bundle": "^4.8.1",
"sonata-project/media-bundle": "^4.1.1",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.5",
"doctrine/orm": "^2.11 || ^3.0",
"ergebnis/composer-normalize": "^2.11",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"sonata-project/classification-bundle": "^4.0.2",
"sonata-project/doctrine-orm-admin-bundle": "^4.2",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^7.0"
},
"autoload": {
"psr-4": {
"Nucleos\\SonataCKEditorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nucleos\\SonataCKEditorBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}