File tree Expand file tree Collapse file tree 7 files changed +18
-18
lines changed
Filter options
Expand file tree Collapse file tree 7 files changed +18
-18
lines changed
Original file line number Diff line number Diff line change @@ -1603,7 +1603,7 @@ Learn more from the Cookbook
1603
1603
1604
1604
.. _`Symfony2 Form Component` : https://github.com/symfony/Form
1605
1605
.. _`DateTime` : http://php.net/manual/en/class.datetime.php
1606
- .. _`Twig Bridge` : https://github.com/symfony/symfony/tree/master /src/Symfony/Bridge/Twig
1607
- .. _`form_div_layout.html.twig` : https://github.com/symfony/symfony/blob/2.1 /src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
1606
+ .. _`Twig Bridge` : https://github.com/symfony/symfony/tree/2.2 /src/Symfony/Bridge/Twig
1607
+ .. _`form_div_layout.html.twig` : https://github.com/symfony/symfony/blob/2.2 /src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
1608
1608
.. _`Cross-site request forgery` : http://en.wikipedia.org/wiki/Cross-site_request_forgery
1609
- .. _`view on GitHub` : https://github.com/symfony/symfony/tree/master /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form
1609
+ .. _`view on GitHub` : https://github.com/symfony/symfony/tree/2.2 /src/Symfony/Bundle/FrameworkBundle/Resources/views/Form
Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ content:
433
433
434
434
{
435
435
"require" : {
436
- "symfony/symfony" : " 2.1 .*"
436
+ "symfony/symfony" : " 2.2 .*"
437
437
},
438
438
"autoload" : {
439
439
"files" : [" model.php" ," controllers.php" ]
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 dev-master
60
+ php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.2.0
61
61
62
62
.. tip ::
63
63
64
- For an exact version, replace `dev-master ` with the latest Symfony version
65
- (e.g. 2.1 .1). For details, see the `Symfony Installation Page `_
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 `_
66
66
67
67
.. tip ::
68
68
@@ -110,10 +110,10 @@ one of the following commands (replacing ``###`` with your actual filename):
110
110
.. code-block :: bash
111
111
112
112
# for .tgz file
113
- $ tar zxvf Symfony_Standard_Vendors_2.1 .# ##.tgz
113
+ $ tar zxvf Symfony_Standard_Vendors_2.2 .# ##.tgz
114
114
115
115
# for a .zip file
116
- $ unzip Symfony_Standard_Vendors_2.1 .# ##.zip
116
+ $ unzip Symfony_Standard_Vendors_2.2 .# ##.zip
117
117
118
118
If you've downloaded "without vendors", you'll definitely need to read the
119
119
next section.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Using the Finder Component
24
24
25
25
{
26
26
"require" : {
27
- "symfony/finder" : " 2.1 .*"
27
+ "symfony/finder" : " 2.2 .*"
28
28
}
29
29
}
30
30
@@ -69,9 +69,9 @@ immediately::
69
69
70
70
{
71
71
"require" : {
72
- "symfony/finder" : " 2.1 .*" ,
73
- "symfony/dom-crawler" : " 2.1 .*" ,
74
- "symfony/css-selector" : " 2.1 .*"
72
+ "symfony/finder" : " 2.2 .*" ,
73
+ "symfony/dom-crawler" : " 2.2 .*" ,
74
+ "symfony/css-selector" : " 2.2 .*"
75
75
}
76
76
}
77
77
@@ -81,7 +81,7 @@ immediately::
81
81
82
82
{
83
83
"require" : {
84
- "symfony/symfony" : " 2.1 .*"
84
+ "symfony/symfony" : " 2.2 .*"
85
85
}
86
86
}
87
87
Original file line number Diff line number Diff line change @@ -969,4 +969,4 @@ customizations directly. Look at the following example:
969
969
The array passed as the second argument contains form "variables". For
970
970
more details about this concept in Twig, see :ref: `twig-reference-form-variables `.
971
971
972
- .. _`form_div_layout.html.twig` : https://github.com/symfony/symfony/blob/2.1 /src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
972
+ .. _`form_div_layout.html.twig` : https://github.com/symfony/symfony/blob/2.2 /src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig
Original file line number Diff line number Diff line change @@ -76,12 +76,12 @@ 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 dev-master
79
+ $ composer.phar create-project symfony/framework-standard-edition path/to/install 2.2.0
80
80
81
81
# remove the Git history
82
82
$ rm -rf .git
83
83
84
- For an exact version, replace `dev-master ` with the latest Symfony version
84
+ For an exact version, replace `2.2.0 ` with the latest Symfony version
85
85
(e.g. 2.1.1). For details, see the `Symfony Installation Page `_
86
86
87
87
.. tip ::
Original file line number Diff line number Diff line change @@ -808,6 +808,6 @@ For an example, see the ``EntityInitializer`` class inside the Doctrine Bridge.
808
808
809
809
.. _`Twig's documentation` : http://twig.sensiolabs.org/doc/advanced.html#creating-an-extension
810
810
.. _`Twig official extension repository` : https://github.com/fabpot/Twig-extensions
811
- .. _`KernelEvents` : https://github.com/symfony/symfony/blob/2.1 /src/Symfony/Component/HttpKernel/KernelEvents.php
811
+ .. _`KernelEvents` : https://github.com/symfony/symfony/blob/2.2 /src/Symfony/Component/HttpKernel/KernelEvents.php
812
812
.. _`SwiftMailer's Plugin Documentation` : http://swiftmailer.org/docs/plugins.html
813
813
.. _`Twig Loader` : http://twig.sensiolabs.org/doc/api.html#loaders
You can’t perform that action at this time.
0 commit comments