Skip to content

Commit da2c10f

Browse files
committed
Merge pull request #33 from symfony-cmf/prepare-next-version
[WIP] prepare for the next release
2 parents 44f06c1 + 59ed9f0 commit da2c10f

File tree

6 files changed

+444
-311
lines changed

6 files changed

+444
-311
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ language: php
33
php:
44
- 5.3
55
- 5.4
6+
- 5.5
67

78
before_script:
89
- composer self-update
9-
- composer install
10+
- composer install --prefer-source
1011
- php app/console doctrine:database:create -e=test
1112
- php app/console doctrine:phpcr:init:dbal -e=test
1213
- php app/console doctrine:phpcr:workspace:create standard_test -e=test

app/AppKernel.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ public function registerBundles()
2121
new Lunetics\LocaleBundle\LuneticsLocaleBundle(),
2222
new FOS\RestBundle\FOSRestBundle(),
2323
new JMS\SerializerBundle\JMSSerializerBundle($this),
24+
new Liip\ImagineBundle\LiipImagineBundle(),
2425

2526
// enable cmf bundles
2627
new Symfony\Cmf\Bundle\RoutingBundle\CmfRoutingBundle(),
2728
new Symfony\Cmf\Bundle\CoreBundle\CmfCoreBundle(),
2829
new Symfony\Cmf\Bundle\MenuBundle\CmfMenuBundle(),
2930
new Symfony\Cmf\Bundle\ContentBundle\CmfContentBundle(),
3031
new Symfony\Cmf\Bundle\SimpleCmsBundle\CmfSimpleCmsBundle(),
32+
new Symfony\Cmf\Bundle\MediaBundle\CmfMediaBundle(),
3133
new Symfony\Cmf\Bundle\CreateBundle\CmfCreateBundle(),
3234

3335
// and the sandbox bundle

app/config/config.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,12 @@ cmf_core:
8080
multilang:
8181
locales: %locales%
8282

83-
cmf_create:
84-
phpcr_odm: true
85-
8683
cmf_simple_cms:
8784
routing:
8885
templates_by_class:
89-
Symfony\Cmf\Bundle\SimpleCmsBundle\Document\Page: CmfSimpleCmsBundle:Page:index.html.twig
86+
Symfony\Cmf\Bundle\SimpleCmsBundle\Doctrine\Phpcr\Page: CmfSimpleCmsBundle:Page:index.html.twig
9087
controllers_by_class:
91-
Symfony\Cmf\Bundle\RoutingBundle\Doctrine\Phpcr\RedirectRoute: cmf_routing.redirect_controller:redirectAction
92-
multilang:
93-
locales: %locales%
88+
Symfony\Cmf\Bundle\RoutingBundle\Doctrine\Phpcr\RedirectRoute: cmf_routing.redirect_controller:redirectAction
9489

9590
knp_menu:
9691
twig: true

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@
1414
"symfony/monolog-bundle": "2.3.*",
1515
"symfony/assetic-bundle": "2.3.*",
1616
"sensio/distribution-bundle": "2.3.*",
17-
"symfony-cmf/symfony-cmf": "1.0.0-beta3",
18-
"symfony-cmf/simple-cms-bundle": "1.0.0-beta3",
19-
"symfony-cmf/create-bundle": "1.0.0-beta3",
17+
"symfony-cmf/symfony-cmf": "1.0.0-beta6",
18+
"symfony-cmf/simple-cms-bundle": "1.0.0-RC2",
19+
"symfony-cmf/create-bundle": "1.0.0-beta4",
2020
"jackalope/jackalope-doctrine-dbal":"1.0.0-beta3",
2121
"doctrine/doctrine-bundle": "1.2.*",
2222
"doctrine/doctrine-fixtures-bundle": "2.1.*",
2323
"liip/functional-test-bundle": "1.0.*",
2424
"lunetics/locale-bundle": "2.2.*",
2525
"liip/doctrine-cache-bundle": "1.0.*",
26-
"incenteev/composer-parameter-handler": "~2.0"
26+
"incenteev/composer-parameter-handler": "~2.0",
27+
"liip/imagine-bundle": "~0.12"
2728
},
2829
"scripts": {
2930
"post-install-cmd": [

0 commit comments

Comments
 (0)