Skip to content

Commit ebdcaba

Browse files
committed
Merge branch '2.3'
2 parents 458c392 + 297af3e commit ebdcaba

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

book/installation.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ Distribution:
5757

5858
.. code-block:: bash
5959
60-
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.2.0
60+
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.3.0
6161
6262
.. tip::
6363

64-
For an exact version, replace `2.2.0` with the latest Symfony version
65-
(e.g. 2.2.1). For details, see the `Symfony Installation Page`_
64+
For an exact version, replace "2.3.0" with the latest Symfony version.
65+
For details, see the `Symfony Installation Page`_
6666

6767
.. tip::
6868

@@ -109,10 +109,10 @@ one of the following commands (replacing ``###`` with your actual filename):
109109
.. code-block:: bash
110110
111111
# for .tgz file
112-
$ tar zxvf Symfony_Standard_Vendors_2.2.###.tgz
112+
$ tar zxvf Symfony_Standard_Vendors_2.3.###.tgz
113113
114114
# for a .zip file
115-
$ unzip Symfony_Standard_Vendors_2.2.###.zip
115+
$ unzip Symfony_Standard_Vendors_2.3.###.zip
116116
117117
If you've downloaded "without vendors", you'll definitely need to read the
118118
next section.

components/using_components.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Using the Finder Component
2424
2525
{
2626
"require": {
27-
"symfony/finder": "2.2.*"
27+
"symfony/finder": "2.3.*"
2828
}
2929
}
3030
3131
If you already have a ``composer.json`` file, just add this line to it. You
32-
may also need to adjust the version (e.g. ``2.1.1`` or ``2.2.*``).
32+
may also need to adjust the version (e.g. ``2.2.2`` or ``2.3.*``).
3333

3434
You can research the component names and versions at `packagist.org`_.
3535

@@ -69,9 +69,9 @@ immediately::
6969
7070
{
7171
"require": {
72-
"symfony/finder": "2.2.*",
73-
"symfony/dom-crawler": "2.2.*",
74-
"symfony/css-selector": "2.2.*"
72+
"symfony/finder": "2.3.*",
73+
"symfony/dom-crawler": "2.3.*",
74+
"symfony/css-selector": "2.3.*"
7575
}
7676
}
7777
@@ -81,7 +81,7 @@ immediately::
8181
8282
{
8383
"require": {
84-
"symfony/symfony": "2.2.*"
84+
"symfony/symfony": "2.3.*"
8585
}
8686
}
8787

contributing/documentation/overview.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ then clone your fork:
2626
$ git clone git://github.com/YOURUSERNAME/symfony-docs.git
2727
2828
Consistent with Symfony's source code, the documentation repository is split into
29-
multiple branches: ``2.0``, ``2.1``, ``2.2`` corresponding to the different
30-
versions of Symfony itself. The ``master`` branch holds the documentation
31-
for the development branch of the code.
29+
multiple branches, corresponding to the different versions of Symfony itself.
30+
The ``master`` branch holds the documentation for the development branch of the code.
3231

3332
Unless you're documenting a feature that was introduced *after* Symfony 2.1
3433
(e.g. in Symfony 2.2), your changes should always be based on the 2.1 branch.

quick_tour/the_big_picture.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ have a ``Symfony/`` directory that looks like this:
7676

7777
.. code-block:: bash
7878
79-
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.2.0
79+
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.3.0
8080
8181
# remove the Git history
8282
$ rm -rf .git
83-
84-
For an exact version, replace `2.2.0` with the latest Symfony version
85-
(e.g. 2.1.1). For details, see the `Symfony Installation Page`_
83+
84+
For an exact version, replace "2.3.0" with the latest Symfony version
85+
(e.g. 2.3.1). For details, see the `Symfony Installation Page`_
8686

8787
.. tip::
8888

0 commit comments

Comments
 (0)