-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
8000 Reworded the built-in web server articles for Symfony 3.3 #8273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
setup/built_in_web_server.rst
Outdated
|
||
First, execute this command: | ||
|
||
.. terminal:: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing code-block
setup/built_in_web_server.rst
Outdated
$bundles = array( | ||
// ... | ||
|
||
if (in_array($this->getEnvironment(), array('dev', 'test'))) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if ('dev' === $this->getEnvironment()) {
is enough.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done! Thanks.
Thank you Javier. |
… (javiereguiluz) This PR was squashed before being merged into the 3.3 branch (closes #8273). Discussion ---------- Reworded the built-in web server articles for Symfony 3.3 This fixes #8270. The current scenario for Symfony 3.3 is the worst possible: we don't have the web server by default (like in 3.2) ... and it's not easy to install it (like in 3.3+Flex or 4.0). That's why I propose to add a link in the main `setup.rst` article to the full explanation about installing and enabling the bundle. In 4.0, we can remove that link and simply say: run `symfony require web-server` and then, execute `./bin/console server:run`. Commits ------- 0cd417b Reworded the built-in web server articles for Symfony 3.3
* 3.3: (40 commits) [#8273] fix bundle registration code [#8273] minor rewording Reworded the built-in web server articles for Symfony 3.3 fix diff code block highlighting [#8231] fix reStructuredText syntax Specified import order of config files [#7981] revert some changes Update upload_file.rst Update usage.rst Update doctrine.rst Update usage.rst [#8260] add missing redirection map entry Delete use_virtuals_forms.rst Added a missing redirection Update validation_group_service_resolver.rst Update redirection_map Update button_based_validation.rst Delete group_service_resolver.rst Create validation_group_service_resolver.rst [#8290] fix minor typo ...
* 3.4: (42 commits) [#8273] fix bundle registration code [#8273] minor rewording Reworded the built-in web server articles for Symfony 3.3 fix diff code block highlighting [#8269] minor rewording [Console] Commands auto-registration is deprecated [#8231] fix reStructuredText syntax Specified import order of config files [#7981] revert some changes Update upload_file.rst Update usage.rst Update doctrine.rst Update usage.rst 75D6 [#8260] add missing redirection map entry Delete use_virtuals_forms.rst Added a missing redirection Update validation_group_service_resolver.rst Update redirection_map Update button_based_validation.rst Delete group_service_resolver.rst ...
This fixes #8270.
The current scenario for Symfony 3.3 is the worst possible: we don't have the web server by default (like in 3.2) ... and it's not easy to install it (like in 3.3+Flex or 4.0). That's why I propose to add a link in the main
setup.rst
article to the full explanation about installing and enabling the bundle.In 4.0, we can remove that link and simply say: run
symfony require web-server
and then, execute./bin/console server:run
.