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,

quick_tour/the_big_picture.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Installing Symfony
1414
------------------
1515

1616
Before continuing reading this chapter, make sure to have installed both PHP
17-
and Symfony as explained in the :doc:`installation chapter </installation>`
17+
and Symfony as explained in the :doc:`setup chapter </setup>`
1818
of the Symfony book.
1919

2020
Understanding the Fundamentals

redirection_map

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
/create_framework/http-kernel-httpkernel-class /create_framework/http_kernel_httpkernel_class
5656
/create_framework/dependency-injection /create_framework/dependency_injection
5757
/cookbook/doctrine/file_uploads /cookbook/controller/upload_file
58-
/book/installation /installation
58+
/book/installation /setup
5959
/book/page_creation /page_creation
6060
/book/controller /controller
6161
/book/routing /routing
@@ -90,7 +90,7 @@
9090
/cookbook/bundles/remove /bundles/remove
9191
/cookbook/cache/form_csrf_caching
9292
/cookbook/cache/varnish
93-
/cookbook/composer /set_up/composer
93+
/cookbook/composer /setup/composer
9494
/cookbook/configuration/apache_router /configuration/apache_router
9595
/cookbook/configuration/configuration_organization /configuration/configuration_organization
9696
/cookbook/configuration/environments /configuration/environments
@@ -229,11 +229,11 @@
229229
/cookbook/validation/custom_constraint /validation/custom_constraint
230230
/cookbook/validation/group_service_resolver /validation/group_service_resolver
231231
/cookbook/validation/severity /validation/severity
232-
/cookbook/web_server/built_in /set_up/built_in_web_server
232+
/cookbook/web_server/built_in /setup/built_in_web_server
233233
/cookbook/web_services/php_soap_extension /web_services/php_soap_extension
234-
/cookbook/workflow/homestead /set_up/homestead
235-
/cookbook/workflow/new_project_git /set_up/new_project_git
236-
/cookbook/workflow/new_project_svn /set_up/new_project_svn
234+
/cookbook/workflow/homestead /setup/homestead
235+
/cookbook/workflow/new_project_git /setup/new_project_git
236+
/cookbook/workflow/new_project_svn /setup/new_project_svn
237237
/components/asset/index /components/asset
238238
/components/asset/introduction /components/asset
239239
/components/browser_kit/index /components/browser_kit

set_up.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

installation.rst renamed to setup.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
2-
single: Installing and Configuring Symfony
2+
single: Installing and Setting up Symfony
33

4-
Installing the Symfony Framework
5-
================================
4+
Installing & Setting up the Symfony Framework
5+
=============================================
66

77
This article explains how to install Symfony in different ways and how to solve
88
the most common issues that may appear during the installation process.
@@ -100,7 +100,7 @@ can create Symfony applications with `Composer`_, the dependency manager used by
100100
modern PHP applications.
101101

102102
If you don't have Composer installed in your computer, start by
103-
:doc:`installing Composer globally </set_up/composer>`. Then, execute the
103+
:doc:`installing Composer globally </setup/composer>`. Then, execute the
104104
``create-project`` command to create a new Symfony application based on its
105105
latest stable version:
106106

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

set_up/new_project_git.rst renamed to setup/new_project_git.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Initial Project Setup
2020
---------------------
2121

2222
To get started, you'll need to download Symfony and get things running. See
23-
the :doc:`/installation` chapter for details.
23+
the :doc:`/setup` chapter for details.
2424

2525
Once your project is running, just follow these simple steps:
2626

set_up/new_project_svn.rst renamed to setup/new_project_svn.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ How to Create and Store a Symfony Project in Subversion
99
.. tip::
1010

1111
This entry is specifically about Subversion, and based on principles found
12-
in :doc:`/set_up/new_project_git`.
12+
in :doc:`/setup/new_project_git`.
1313

1414
Once you've read through :doc:`/page_creation` and become familiar with
1515
using Symfony, you'll no-doubt be ready to start your own project. The
@@ -48,7 +48,7 @@ Initial Project Setup
4848

4949
To get started, you'll need to download Symfony and get the basic Subversion setup.
5050
First, download and get your Symfony project running by following the
51-
:doc:`Installation </installation>` chapter.
51+
:doc:`Installation </setup>` chapter.
5252

5353
Once you have your new project directory and things are working, follow along
5454
with these steps:

0 commit comments

Comments
 (0)