forked from sonata-project/SonataFormatterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.54 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
76
77
78
{
"name": "sonata-project/formatter-bundle",
"type": "symfony-bundle",
"description": "Symfony SonataFormatterBundle",
"keywords": [
"sonata",
"formatter",
"markdown",
"ckeditor",
"markitup"
],
"homepage": "https://sonata-project.org/bundles/formatter",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataFormatterBundle/contributors"
}
],
"require": {
"php": "^5.6 || ^7.0",
"egeloen/ckeditor-bundle": "^4.0 || ^5.0 || ^6.0",
"knplabs/knp-markdown-bundle": "^1.7",
"sonata-project/block-bundle": "^3.11",
"sonata-project/core-bundle": "^3.9",
"symfony/config": "^2.8 || ^3.2 || ^4.0",
"symfony/dependency-injection": "^2.8 || ^3.2 || ^4.0",
"symfony/event-dispatcher": "^2.8 || ^3.2 || ^4.0",
"symfony/form": "^2.8 || ^3.2 || ^4.0",
"symfony/framework-bundle": "^2.8 || ^3.2 || ^4.0",
"symfony/http-foundation": "^2.8 || ^3.2 || ^4.0",
"symfony/http-kernel": "^2.8 || ^3.2 || ^4.0",
"symfony/options-resolver": "^2.8 || ^3.2 || ^4.0",
"symfony/property-access": "^2.8 || ^3.2 || ^4.0",
"symfony/translation": "^2.8 || ^3.2 || ^4.0",
"symfony/twig-bridge": "^2.8 || ^3.2 || ^4.0",
"twig/twig": "^1.34 || ^2.0"
},
"conflict": {
"sonata-project/admin-bundle": "<3.27",
"sonata-project/media-bundle": "<3.0"
},
"require-dev": {
"friendsofsymfony/ckeditor-bundle": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
"sonata-project/admin-bundle": "^3.31",
"sonata-project/media-bundle": "^3.10",
"symfony/phpunit-bridge": "^4.0",
"symfony/validator": "^2.8 || ^3.2 || ^4.0"
},
"suggest": {
"sonata-project/admin-bundle": "For using the admin media browser.",
"sonata-project/media-bundle": "For using the admin media browser."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\FormatterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\FormatterBundle\\Tests\\": "tests/"
}
}
}