File tree 4 files changed +17
-18
lines changed
contributing/documentation
4 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ Distribution:
57
57
58
58
.. code-block :: bash
59
59
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
61
61
62
62
.. tip ::
63
63
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 `_
66
66
67
67
.. tip ::
68
68
@@ -109,10 +109,10 @@ one of the following commands (replacing ``###`` with your actual filename):
109
109
.. code-block :: bash
110
110
111
111
# for .tgz file
112
- $ tar zxvf Symfony_Standard_Vendors_2.2 .# ##.tgz
112
+ $ tar zxvf Symfony_Standard_Vendors_2.3 .# ##.tgz
113
113
114
114
# for a .zip file
115
- $ unzip Symfony_Standard_Vendors_2.2 .# ##.zip
115
+ $ unzip Symfony_Standard_Vendors_2.3 .# ##.zip
116
116
117
117
If you've downloaded "without vendors", you'll definitely need to read the
118
118
next section.
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ Using the Finder Component
24
24
25
25
{
26
26
"require" : {
27
- "symfony/finder" : " 2.2 .*"
27
+ "symfony/finder" : " 2.3 .*"
28
28
}
29
29
}
30
30
31
31
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 .* ``).
33
33
34
34
You can research the component names and versions at `packagist.org `_.
35
35
@@ -69,9 +69,9 @@ immediately::
69
69
70
70
{
71
71
"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 .*"
75
75
}
76
76
}
77
77
@@ -81,7 +81,7 @@ immediately::
81
81
82
82
{
83
83
"require" : {
84
- "symfony/symfony" : " 2.2 .*"
84
+ "symfony/symfony" : " 2.3 .*"
85
85
}
86
86
}
87
87
Original file line number Diff line number Diff line change @@ -26,9 +26,8 @@ then clone your fork:
26
26
$ git clone git://github.com/YOURUSERNAME/symfony-docs.git
27
27
28
28
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.
32
31
33
32
Unless you're documenting a feature that was introduced *after * Symfony 2.1
34
33
(e.g. in Symfony 2.2), your changes should always be based on the 2.1 branch.
Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ have a ``Symfony/`` directory that looks like this:
76
76
77
77
.. code-block :: bash
78
78
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
80
80
81
81
# remove the Git history
82
82
$ 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 `_
86
86
87
87
.. tip ::
88
88
You can’t perform that action at this time.
0 commit comments