-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
53 lines (53 loc) · 1.76 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
{
"name": "symfony-cmf/simple-cms-bundle",
"type": "symfony-bundle",
"description": "A simple CMS bundle based on the Symfony CMF",
"keywords": ["Symfony CMF", "CMS"],
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/SimpleCmsBundle/contributors"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.3.9|^7.0",
"symfony/framework-bundle": "~2.3",
"symfony-cmf/core-bundle": "~1.1",
"symfony-cmf/routing-bundle": "~1.2",
"symfony-cmf/menu-bundle": "2.0.*",
"symfony-cmf/content-bundle": "~1.2",
"doctrine/phpcr-bundle": "~1.1",
"doctrine/phpcr-odm": "~1.2"
},
"require-dev": {
"symfony-cmf/testing": "^1.3",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.4",
"matthiasnoback/symfony-config-test": "^1.2.3",
"sonata-project/block-bundle": "^2.2.8",
"sonata-project/core-bundle": "^2.2.3",
"sonata-project/doctrine-phpcr-admin-bundle": "~1.1",
"symfony/monolog-bundle": "~2.3"
},
"suggest": {
"symfony-cmf/create-bundle": "to allow the admin to edit pages inline (~1.1)",
"sonata-project/doctrine-phpcr-admin-bundle": "to provide an admin interface for editing content (~1.1)",
"ivory/ckeditor-bundle": "to provide a CKEditor in the admin interface"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\SimpleCmsBundle\\": ""
}
},
"conflict": {
"jms/di-extra-bundle": "<1.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}