Skip to content

Commit 9e7832a

Browse files
committed
Merge pull request #26 from jankramer/fix-dependencies
Updated dependencies
2 parents 22520f4 + ef2d57c commit 9e7832a

File tree

5 files changed

+390
-230
lines changed

5 files changed

+390
-230
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ before_script:
88
- composer install
99
- php app/console doctrine:database:create -e=test
1010
- php app/console doctrine:phpcr:init:dbal -e=test
11-
- app/console doctrine:phpcr:register-system-node-types -e=test
12-
- app/console doctrine:phpcr:workspace:create standard_test -e=test
11+
- php app/console doctrine:phpcr:workspace:create standard_test -e=test
12+
- php app/console doctrine:phpcr:repository:init -e=test
1313

1414
script: phpunit -c app
1515

app/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function registerBundles()
2323
new JMS\SerializerBundle\JMSSerializerBundle($this),
2424

2525
// enable cmf bundles
26-
new Symfony\Cmf\Bundle\RoutingExtraBundle\SymfonyCmfRoutingExtraBundle(),
26+
new Symfony\Cmf\Bundle\RoutingBundle\SymfonyCmfRoutingBundle(),
2727
new Symfony\Cmf\Bundle\CoreBundle\SymfonyCmfCoreBundle(),
2828
new Symfony\Cmf\Bundle\MenuBundle\SymfonyCmfMenuBundle(),
2929
new Symfony\Cmf\Bundle\ContentBundle\SymfonyCmfContentBundle(),

app/config/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,8 @@ doctrine_phpcr:
5858
auto_generate_proxy_classes: %kernel.debug%
5959
locales:
6060
en:
61-
- en
6261
- de
6362
de:
64-
- de
6563
- en
6664

6765
liip_doctrine_cache:
@@ -71,7 +69,7 @@ liip_doctrine_cache:
7169
nodes:
7270
type: file_system
7371

74-
symfony_cmf_routing_extra:
72+
symfony_cmf_routing:
7573
dynamic:
7674
enabled: true
7775

@@ -80,7 +78,7 @@ symfony_cmf_simple_cms:
8078
templates_by_class:
8179
Symfony\Cmf\Bundle\SimpleCmsBundle\Document\Page: SymfonyCmfSimpleCmsBundle:Page:index.html.twig
8280
controllers_by_class:
83-
Symfony\Cmf\Bundle\RoutingExtraBundle\Document\RedirectRoute: symfony_cmf_routing_extra.redirect_controller:redirectAction
81+
Symfony\Cmf\Bundle\RoutingBundle\Document\RedirectRoute: symfony_cmf_routing.redirect_controller:redirectAction
8482
multilang:
8583
locales: %locales%
8684
use_sonata_admin: false
@@ -101,4 +99,4 @@ lunetics_locale:
10199
- cookie
102100
- router
103101
- browser
104-
allowed_locales: %locales%
102+
allowed_locales: %locales%

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
},
2525
"scripts": {
2626
"post-install-cmd": [
27-
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::initSubmodules",
27+
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreate",
2828
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
2929
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
3030
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
3131
],
3232
"post-update-cmd": [
33-
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::initSubmodules",
33+
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreate",
3434
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
3535
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
3636
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"

0 commit comments

Comments
 (0)