Skip to content

Commit c71813b

Browse files
committed
minor #11806 Remove an outdated article about Composer (javiereguiluz)
This PR was squashed before being merged into the 3.4 branch (closes #11806). Discussion ---------- Remove an outdated article about Composer This fixes #11798. Commits ------- f93d963 Remove an outdated article about Composer
2 parents 06b7cb0 + f93d963 commit c71813b

File tree

6 files changed

+12
-24
lines changed

6 files changed

+12
-24
lines changed

_build/redirection_map

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,3 +366,4 @@
366366
/workflow/usage /workflow
367367
/introduction/from_flat_php_to_symfony2 /introduction/from_flat_php_to_symfony
368368
/contributing/community/other /contributing/community
369+
/setup/composer /setup

contributing/code/tests.rst

Lines changed: 2 additions & 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 </setup/composer>` and execute the following:
21+
`install Composer`_ and execute the following:
2222

2323
.. code-block:: terminal
2424
@@ -54,6 +54,7 @@ what's going on and if the tests are broken because of the new code.
5454
On Windows, install the `Cmder`_, `ConEmu`_, `ANSICON`_ or `Mintty`_ free applications
5555
to see colored test results.
5656

57+
.. _`install Composer`: https://getcomposer.org/download/
5758
.. _Cmder: http://cmder.net/
5859
.. _ConEmu: https://conemu.github.io/
5960
.. _ANSICON: https://github.com/adoxa/ansicon/releases

create_framework/introduction.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Dependency Management
8686

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

9191
Our Project
9292
-----------
@@ -113,3 +113,4 @@ introduce the HttpFoundation Component and see what it brings us.
113113

114114
.. _`Symfony`: https://symfony.com/
115115
.. _`Composer`: http://packagist.org/about-composer
116+
.. _`download and install Composer`: https://getcomposer.org/download/

setup.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,8 @@ applications with `Composer`_, the dependency manager used by modern PHP
135135
applications.
136136

137137
If you don't have Composer installed in your computer, start by
138-
:doc:`installing Composer globally </setup/composer>`. Then, execute the
139-
``create-project`` command to create a new Symfony application based on its
140-
latest stable version:
138+
`installing Composer`_. Then, execute the ``create-project`` command to create a
139+
new Symfony application based on its latest stable version:
141140

142141
.. code-block:: terminal
143142
@@ -315,11 +314,11 @@ Go Deeper with Setup
315314
setup/new_project_git
316315
setup/built_in_web_server
317316
setup/web_server_configuration
318-
setup/composer
319317
setup/*
320318

321319
.. _`Joyful Development with Symfony`: https://symfonycasts.com/screencast/symfony3
322320
.. _`Composer`: https://getcomposer.org/
321+
.. _`installing Composer`: https://getcomposer.org/download/
323322
.. _`Phar extension`: https://php.net/manual/en/intro.phar.php
324323
.. _`Symfony Standard Edition`: https://github.com/symfony/symfony-standard
325324
.. _`The Symfony Demo application`: https://github.com/symfony/demo

setup/composer.rst

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

setup/unstable_versions.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ 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 </setup/composer>`
12-
package manager. Then, open a command console, enter your project's directory and
11+
a new project to test its features. First, `install the Composer package manager`_.
12+
Then, open a command console, enter your project's directory and
1313
execute the following command:
1414

1515
.. code-block:: terminal
@@ -77,3 +77,5 @@ Symfony version has deprecated some of its features.
7777
# ... after testing the new Symfony version
7878
$ git checkout master
7979
$ git branch -D testing_new_symfony
80+
81+
.. _`install the Composer package manager`: https://getcomposer.org/download/

0 commit comments

Comments
 (0)