forked from sonata-project/SonataFormatterBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.92 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
{
"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": "thomas.rabaix@sonata-project.org",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataFormatterBundle/contributors"
}
],
"require": {
"php": "^5.3 || ^7.0",
"egeloen/ckeditor-bundle": "^4.0",
"knplabs/knp-markdown-bundle": "^1.4",
"sonata-project/block-bundle": "^3.1.1",
"sonata-project/core-bundle": "^3.0",
"symfony/form": "^2.3 || ^3.0",
"symfony/framework-bundle": "^2.3 || ^3.0",
"symfony/property-access": "^2.3 || ^3.0",
"twig/twig": "^1.12"
},
"require-dev": {
"sllh/php-cs-fixer-styleci-bridge": "^2.0",
"sonata-project/admin-bundle": "^3.1",
"sonata-project/media-bundle": "^3.0",
"symfony/phpunit-bridge": "^2.7 || ^3.0",
"symfony/validator": "^2.3 || ^3.0"
},
"suggest": {
"sonata-project/admin-bundle": "For using the admin media browser.",
"sonata-project/media-bundle": "For using the admin media browser."
},
"conflict": {
"sonata-project/admin-bundle": "<3.0 || >= 4.0",
"sonata-project/media-bundle": "<3.0 || >= 4.0"
},
"autoload": {
"psr-4": { "Sonata\\FormatterBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": { "Sonata\\FormatterBundle\\Tests\\": "Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}