This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
52 lines (52 loc) · 1.63 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": "symfony-cmf/content-bundle",
"type": "symfony-bundle",
"description": "Symfony CMF Content Bundle",
"keywords": [
"Symfony CMF"
],
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/ContentBundle/contributors"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^2.8 || ^3.3 || ^4.0",
"symfony/templating": "^2.8 || ^3.3 || ^4.0",
"symfony/twig-bundle": "^2.8 || ^3.3 || ^4.0",
"symfony/validator": "^2.8 || ^3.3 || ^4.0",
"symfony-cmf/core-bundle": "^2.1",
"symfony-cmf/menu-bundle": "^2.1",
"symfony-cmf/routing-bundle": "^2.1"
},
"require-dev": {
"doctrine/phpcr-odm": "^1.4|^2.0",
"symfony-cmf/testing": "^2.1.11",
"symfony/phpunit-bridge": "^4.2.2"
},
"suggest": {
"friendsofsymfony/rest-bundle": "Improved handling for different output formats",
"doctrine/phpcr-odm": "To persist content with the PHP content repository",
"doctrine/phpcr-bundle": "To integrate PHPCR-ODM with Symfony",
"symfony-cmf/sonata-admin-integration-bundle": "To provide admin interfaces for the content"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\ContentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\ContentBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}