Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 8416330

Browse files
committed
remove dev master dependencies
1 parent ac63714 commit 8416330

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

cookbook/creating_a_cms/getting-started.rst

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,19 @@ all of the required packages now.
3131
...
3232
"symfony-cmf/routing-auto-bundle": "1.0.*@alpha",
3333
"symfony-cmf/menu-bundle": "1.0",
34-
"sonata-project/doctrine-phpcr-admin-bundle": "dev-master",
35-
"symfony-cmf/tree-browser-bundle": "@dev",
34+
"sonata-project/doctrine-phpcr-admin-bundle": "1.0.*",
35+
"symfony-cmf/tree-browser-bundle": "1.0.*",
3636
"doctrine/data-fixtures": "1.0.0",
3737
38-
"doctrine/phpcr-odm": "dev-master as 1.0.0",
39-
"phpcr/phpcr-utils": "dev-master as 1.0.0",
40-
"doctrine/phpcr-bundle": "dev-master as 1.0.0",
41-
"symfony-cmf/routing-bundle": "dev-master as 1.1.0",
42-
"symfony-cmf/routing": "dev-master as 1.2.0"
38+
"doctrine/phpcr-odm": "1.0.*",
39+
"phpcr/phpcr-utils": "1.0.*",
40+
"doctrine/phpcr-bundle": "1.0.*"
41+
"symfony-cmf/routing-bundle": "1.1.*",
42+
"symfony-cmf/routing": "1.1.*"
4343
},
4444
...
4545
}
4646
47-
.. note::
48-
49-
This tutorial currently requires code only available in the lastest
50-
unstable version of PHPCR-ODM, this is why you require the "dev-master as
51-
1.0.0" constraints. When PHPCR-ODM 1.1 is released this will no longer be
52-
necessary.
53-
5447
Note that each time you modify your ``composer.json`` file you are required to
5548
run ``composer update``.
5649

cookbook/creating_a_cms/sonata-admin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Ensure that you have the following package installed:
1515
...
1616
require: {
1717
...
18-
"sonata-project/doctrine-phpcr-admin-bundle": "dev-master",
18+
"sonata-project/doctrine-phpcr-admin-bundle": "1.0.*",
1919
},
2020
...
2121
}

cookbook/creating_cms_using_cmf_and_sonata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the following to your ``composer.json`` file:
3838
"require": {
3939
...
4040
"sonata-project/doctrine-phpcr-admin-bundle": "1.0.*",
41-
"sonata-project/core-bundle": "~2.2@dev"
41+
"sonata-project/core-bundle": "~2.2"
4242
}
4343
4444
And then run:

cookbook/editions/cmf_sandbox.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Next, you need to install the actual Doctrine DBAL bundle required by jackalope:
199199

200200
.. code-block:: bash
201201
202-
$ php composer.phar require jackalope/jackalope-doctrine-dbal:dev-master
202+
$ php composer.phar require jackalope/jackalope-doctrine-dbal:1.0.*
203203
204204
And create and init your database:
205205

cookbook/installing_configuring_doctrine_phpcr_odm.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ content repository.
102102
"minimum-stability": "dev",
103103
"require": {
104104
...
105-
"jackalope/jackalope-doctrine-dbal": "dev-master",
105+
"jackalope/jackalope-doctrine-dbal": "1.0.*",
106106
"doctrine/phpcr-bundle": "1.0.*",
107107
"doctrine/phpcr-odm": "1.0.*"
108108
}

0 commit comments

Comments
 (0)