This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.62 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": "vince/cms-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "Basic CMS features for Symfony 2.5+",
"keywords": ["CMS", "Vince"],
"homepage": "http://vincentchalamon.github.io/VinceCmsBundle/",
"autoload": {
"psr-0": { "Vince\\Bundle\\CmsBundle": "" }
},
"authors": [
{
"name": "Vincent CHALAMON",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "jquery/jquery",
"version": "1.11.0",
"dist": {
"url": "http://code.jquery.com/jquery-1.11.0.min.js",
"type": "file"
}
}
}
],
"require-dev": {
"liip/functional-test-bundle": "1.0.*",
"jquery/jquery": "1.*"
},
"require": {
"php": ">=5.3.2",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "1.3.*",
"sensio/framework-extra-bundle": "3.0.*",
"symfony/symfony": "2.5.*",
"gedmo/doctrine-extensions": "2.3.*",
"jms/serializer-bundle": "0.13.*",
"knplabs/knp-paginator-bundle": "2.4.*",
"symfony/swiftmailer-bundle": "2.3.*",
"doctrine/doctrine-fixtures-bundle": "v2.2.0"
},
"suggest": {
"vince/cms-sonata-admin-bundle": "Manage VinceCms with Sonata Admin",
"vince/type-bundle": "Expand forms",
"friendsofsymfony/elastica-bundle": "Use elastisearch"
},
"minimum-stability": "stable",
"target-dir": "Vince/Bundle/CmsBundle"
}