Skip to content

Commit 38eb199

Browse files
committed
Created Set Up topic
1 parent 96f7cdc commit 38eb199

15 files changed

+20
-29
lines changed

configuration/web_server_configuration.rst

+1-1
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 </web_server/built_in>`. However,
8+
:doc:`PHP's internal web server </set_up/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

+1-1
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 </composer/installation>` and execute the following:
21+
:doc:`install Composer </set_up/composer>` and execute the following:
2222

2323
.. code-block:: bash
2424

controller.rst

+1-1
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 </web_server/built_in>`)
215+
if you're using the :doc:`built-in web server </set_up/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

+1-1
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 </composer/installation>` now.
97+
yet, :doc:`download and install Composer </set_up/composer>` now.
9898

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

installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -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 </composer/installation>`. Then, execute the
103+
:doc:`installing Composer globally </set_up/composer>`. Then, execute the
104104
``create-project`` command to create a new Symfony application based on its
105105
latest stable version:
106106

redirection_map

+5-5
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
/cookbook/bundles/remove /bundles/remove
9191
/cookbook/cache/form_csrf_caching
9292
/cookbook/cache/varnish
93-
/cookbook/composer /composer/installation
93+
/cookbook/composer /set_up/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 /web_server/built_in
232+
/cookbook/web_server/built_in /set_up/built_in_web_server
233233
/cookbook/web_services/php_soap_extension /web_services/php_soap_extension
234-
/cookbook/workflow/homestead /workflow/homestead
235-
/cookbook/workflow/new_project_git /workflow/new_project_git
236-
/cookbook/workflow/new_project_svn /workflow/new_project_svn
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
237237
/components/asset/index /components/asset
238238
/components/asset/introduction /components/asset
239239
/components/browser_kit/index /components/browser_kit

set_up.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Set Up
2+
======
3+
4+
.. toctree::
5+
:glob:
6+
7+
set_up/*
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

workflow/new_project_git.rst renamed to set_up/new_project_git.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Workflow; Git
2+
single: Set Up; Git
33

44
.. _how-to-create-and-store-a-symfony2-project-in-git:
55

workflow/new_project_svn.rst renamed to set_up/new_project_svn.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. index::
2-
single: Workflow; Subversion
2+
single: Set Up; Subversion
33

44
.. _how-to-create-and-store-a-symfony2-project-in-subversion:
55

@@ -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:`/workflow/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

web_server/index.rst

-7
This file was deleted.

workflow/index.rst

-9
This file was deleted.

0 commit comments

Comments
 (0)