File tree 4 files changed +4
-18
lines changed
Filter options
contributing/documentation 4 files changed +4
-18
lines changed
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ Why Do my Changes Take so Long to Be Reviewed and/or Merged?
292
292
293
293
Please be patient. It can take up to several days before your pull request can
294
294
be fully reviewed. After merging the changes, it could take again several hours
295
- before your changes appear on the `` symfony.com `` website.
295
+ before your changes appear on the Symfony website.
296
296
297
297
Why Should I Use the Oldest Maintained Branch Instead of the Master Branch?
298
298
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ Before You Start
63
63
Reading about how to create a framework is not enough. You will have to follow
64
64
along and actually type all the examples included in this tutorial. For that,
65
65
you need a recent version of PHP (5.5.9 or later is good enough), a web server
66
- (like Apache, NGINX or PHP's built-in web server), a good knowledge of PHP and
66
+ (like Apache, nginx or PHP's built-in web server), a good knowledge of PHP and
67
67
an understanding of Object Oriented programming.
68
68
69
69
Ready to go? Read on!
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ How to Use PHP's built-in Web Server
13
13
The PHP CLI SAPI comes with a `built-in web server `_. It can be used to run your
14
14
PHP applications locally during development, for testing or for application
15
15
demonstrations. This way, you don't have to bother configuring a full-featured
16
- web server such as :doc: `Apache or Nginx </setup/web_server_configuration >`.
16
+ web server such as :doc: `Apache or nginx </setup/web_server_configuration >`.
17
17
18
18
.. caution ::
19
19
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ to override:
133
133
Running Commands with Different PHP Versions
134
134
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
135
135
136
- When running different PHP versions it's useful to use the main ``symfony ``
136
+ When running different PHP versions, it is useful to use the main ``symfony ``
137
137
command as a wrapper for the ``php `` command. This allows you to always select
138
138
the most appropriate PHP version according to the project which is running the
139
139
commands. It also loads the env vars automatically, which is important when
@@ -148,20 +148,6 @@ running non-Symfony commands:
148
148
# (or the default PHP version if the project didn't select one)
149
149
$ symfony php -r "..."
150
150
151
- If you are using this wrapper frequently, consider aliasing the ``php `` command
152
- to it:
153
-
154
- .. code-block :: terminal
155
-
156
- $ cd ~/.symfony/bin
157
- $ cp symfony php
158
- # now you can run "php ..." and the "symfony" command will be executed instead
159
-
160
- # other PHP commands can be wrapped too using this trick
161
- $ cp symfony php-config
162
- $ cp symfony pear
163
- $ cp symfony pecl
164
-
165
151
Local Domain Names
166
152
------------------
167
153
You can’t perform that action at this time.
0 commit comments