Skip to content

Commit d23d3b3

Browse files
committed
Renaming installation.rst -> setup.rst && set_up.rst to setup.rst
1 parent 47dfbe0 commit d23d3b3

20 files changed

+25
-32
lines changed

best_practices/creating-the-project.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Installer**, which has to be installed before creating your first project.
1212

1313
Use the Symfony Installer to create new Symfony-based projects.
1414

15-
Read the :doc:`installation chapter </installation>` of the Symfony Book to
15+
Read the :doc:`installation & setup chapter </setup>` of the Symfony Book to
1616
learn how to install and use the Symfony Installer.
1717

1818
.. _linux-and-mac-os-x-systems:

configuration/environments.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ either the ``app.php`` (for the ``prod`` environment) or the ``app_dev.php``
140140

141141
The given URLs assume that your web server is configured to use the ``web/``
142142
directory of the application as its root. Read more in
143-
:doc:`Installing Symfony </installation>`.
143+
:doc:`Installing Symfony </setup>`.
144144

145145
If you open up one of these files, you'll quickly see that the environment
146146
used by each is explicitly set::

configuration/web_server_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Configuring a Web Server
55
========================
66

77
The preferred way to develop your Symfony application is to use
8-
:doc:`PHP's internal web server </set_up/built_in_web_server>`. However,
8+
:doc:`PHP's internal web server </setup/built_in_web_server>`. However,
99
when using an older PHP version or when running the application in the production
1010
environment, you'll need to use a fully-featured web server. This article
1111
describes several ways to use Symfony with Apache or Nginx.

contributing/code/tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Before Running the Tests
1818

1919
To run the Symfony test suite, install the external dependencies used during the
2020
tests, such as Doctrine, Twig and Monolog. To do so,
21-
:doc:`install Composer </set_up/composer>` and execute the following:
21+
:doc:`install Composer </setup/composer>` and execute the following:
2222

2323
.. code-block:: bash
2424

contributing/documentation/overview.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ even remove any content and do your best to comply with the
140140
.. code-block:: bash
141141
142142
# if the modified content existed before
143-
$ git add book/installation.rst
144-
$ git commit book/installation.rst
143+
$ git add setup.rst
144+
$ git commit setup.rst
145145
146146
**Step 6.** **Push** the changes to your forked repository:
147147

controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ to the controller:
212212
return $collection;
213213
214214
Now, you can go to ``/hello/ryan`` (e.g. ``http://localhost:8000/hello/ryan``
215-
if you're using the :doc:`built-in web server </set_up/built_in_web_server>`)
215+
if you're using the :doc:`built-in web server </setup/built_in_web_server>`)
216216
and Symfony will execute the ``HelloController::indexAction()`` controller
217217
and pass in ``ryan`` for the ``$name`` variable. Creating a "page" means
218218
simply creating a controller method and an associated route.

create_framework/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Dependency Management
9494

9595
To install the Symfony Components that you need for your framework, you are going
9696
to use `Composer`_, a project dependency manager for PHP. If you don't have it
97-
yet, :doc:`download and install Composer </set_up/composer>` now.
97+
yet, :doc:`download and install Composer </setup/composer>` now.
9898

9999
Our Project
100100
-----------

index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Advanced Topics
7979
profiler
8080
request
8181
session
82-
set_up
82+
setup
8383

8484
Best Practices
8585
--------------

install/unstable_versions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Creating a New Project Based on an Unstable Symfony Version
88
-----------------------------------------------------------
99

1010
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
11-
a new project to test its features. First, :doc:`install the Composer </set_up/composer>`
11+
a new project to test its features. First, :doc:`install the Composer </setup/composer>`
1212
package manager. Then, open a command console, enter your project's directory and
1313
execute the following command:
1414

page_creation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Creating a Page: Route and Controller
3232

3333
.. tip::
3434

35-
Before continuing, make sure you've read the :doc:`Installation </installation>`
35+
Before continuing, make sure you've read the :doc:`Setup </setup>`
3636
chapter and can access your new Symfony app in the browser.
3737

3838
Suppose you want to create a page - ``/lucky/number`` - that generates a lucky (well,

0 commit comments

Comments
 (0)