Skip to content

Commit 7052709

Browse files
committed
updated dependencies
1 parent 8781b4a commit 7052709

File tree

9 files changed

+967
-643
lines changed

9 files changed

+967
-643
lines changed

app/AppKernel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public function registerBundles()
3434
new Symfony\Cmf\Bundle\SearchBundle\CmfSearchBundle(),
3535
new Symfony\Cmf\Bundle\MediaBundle\CmfMediaBundle(),
3636
new FM\ElfinderBundle\FMElfinderBundle(),
37+
new Symfony\Cmf\Bundle\RoutingAutoBundle\CmfRoutingAutoBundle(),
3738

3839
// language switcher
3940
new Lunetics\LocaleBundle\LuneticsLocaleBundle(),

app/config/config.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -304,12 +304,6 @@ liip_imagine:
304304
filters:
305305
thumbnail: { size: [50, 50], mode: outbound }
306306

307-
cmf_media:
308-
upload_file_role: ROLE_CAN_UPLOAD_FILE
309-
use_jms_serializer: auto
310-
use_elfinder: auto
311-
use_imagine: auto
312-
313307
fm_elfinder:
314308
locale: %locale%
315309
editor: ckeditor
@@ -331,7 +325,7 @@ doctrine_cache:
331325
fos_rest:
332326
view:
333327
force_redirects:
334-
html: true
328+
html: true
335329
formats:
336330
json: true
337331
xml: true

app/config/routing.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ sonata_admin:
4141
type: sonata_admin
4242
prefix: /{_locale}/admin
4343

44-
_imagine:
45-
resource: .
46-
type: imagine
44+
_liip_imagine:
45+
resource: "@LiipImagineBundle/Resources/config/routing.xml"
4746

4847
fos_js_routing:
4948
resource: @FOSJsRoutingBundle/Resources/config/routing/routing.xml

composer.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,33 @@
2222
"sensio/distribution-bundle": "2.3.*",
2323
"sensio/framework-extra-bundle": "2.3.*",
2424
"sensio/generator-bundle": "2.3.*",
25-
"symfony-cmf/symfony-cmf": "1.1.*",
26-
"symfony-cmf/simple-cms-bundle": "1.1.*",
27-
"symfony-cmf/search-bundle": "1.0.*",
28-
"symfony-cmf/create-bundle": "1.1.*",
29-
"symfony-cmf/seo-bundle": "1.0.*",
25+
"symfony-cmf/symfony-cmf": "1.2.*",
26+
"symfony-cmf/simple-cms-bundle": "1.2.*",
27+
"symfony-cmf/search-bundle": "1.1.*",
28+
"symfony-cmf/create-bundle": "1.2.*",
29+
"symfony-cmf/seo-bundle": "1.1.*",
30+
"symfony-cmf/routing-auto-bundle": "1.0.*",
3031
"jackalope/jackalope-doctrine-dbal": "1.1.*",
3132
"jackalope/jackalope-jackrabbit": "1.1.*",
3233
"doctrine/doctrine-bundle": "1.2.*",
3334
"doctrine/data-fixtures": "1.0.*",
3435
"doctrine/doctrine-cache-bundle": "1.0.*",
3536
"sonata-project/cache-bundle": "2.1.*",
36-
"sonata-project/doctrine-phpcr-admin-bundle": "1.1.*",
37+
"sonata-project/doctrine-phpcr-admin-bundle": "1.2.*",
3738
"sonata-project/jquery-bundle": "1.8.3",
38-
"symfony-cmf/block-bundle": "1.1.*",
39+
"symfony-cmf/block-bundle": "1.2.*",
3940
"eko/feedbundle": "1.0.*",
4041
"lunetics/locale-bundle": "2.3.*",
41-
"liip/imagine-bundle": "0.21.*",
42+
"liip/imagine-bundle": "1.0.*",
4243
"wjzijderveld/check-bundles": "1.1.*",
4344
"helios-ag/fm-elfinder-bundle": "1.4.*",
4445
"burgov/key-value-form-bundle": "1.0.*"
4546
},
4647
"require-dev": {
4748
"liip/functional-test-bundle": "1.0.*",
48-
"symfony-cmf/testing": "1.1.*"
49+
"symfony-cmf/testing": "1.2.*"
4950
},
50-
"minimum-stability": "stable",
51+
"minimum-stability": "dev",
5152
"scripts": {
5253
"post-install-cmd": [
5354
"WillemJan\\CheckBundles\\Composer\\CheckBundles::postPackageUpdate",
@@ -64,13 +65,21 @@
6465
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
6566
]
6667
},
68+
"config": {
69+
"bin-dir": "bin"
70+
},
6771
"extra": {
6872
"checkbundles-ignore": [
6973
"Liip\\FunctionalTestBundle\\LiipFunctionalTestBundle",
7074
"Sensio\\Bundle\\DistributionBundle\\SensioDistributionBundle"
7175
],
7276
"symfony-app-dir": "app",
7377
"symfony-web-dir": "web",
74-
"symfony-assets-install": "symlink"
78+
"incenteev-parameters": {
79+
"file": "app/config/parameters.yml"
80+
},
81+
"branch-alias": {
82+
"dev-master": "1.2-dev"
83+
}
7584
}
7685
}

0 commit comments

Comments
 (0)