-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
43 lines (43 loc) · 1.35 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
{
"name": "symfony-cmf/create-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle for createphp and create.js. The easiest way to make any site editable and have semantic annotations with RDFa.",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch/"
},
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/CreateBundle/contributors"
}
],
"require": {
"php": "^5.5.6|^7.0",
"symfony/framework-bundle": "^2.8|^3.0",
"symfony/assetic-bundle": "^2.1",
"friendsofsymfony/rest-bundle": "^1.0|^2.0",
"midgard/createphp": "^1.1"
},
"suggest": {
"jms/serializer-bundle": "Add support for advanced serialization capabilities (^0.12|^1.0)",
"symfony-cmf/core-bundle": "To be able to enable 'rest_force_request_locale' (^1.0)",
"symfony-cmf/media-bundle": "When using the default image support (^1.1)"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\CreateBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\CreateBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}