Skip to content

Commit da438c0

Browse files
committed
minor #10169 Remove references to Silex (javiereguiluz)
This PR was merged into the 2.8 branch. Discussion ---------- Remove references to Silex Fixes #10136. Commits ------- 8286e92 Remove references to Silex
2 parents 2dce391 + 8286e92 commit da438c0

File tree

4 files changed

+4
-16
lines changed

4 files changed

+4
-16
lines changed

create_framework/dependency_injection.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,7 @@ in great details, but hopefully it gives you enough information to get started
239239
on your own and to better understand how the Symfony framework works
240240
internally.
241241

242-
If you want to learn more, read the source code of the `Silex`_
243-
micro-framework, and especially its `Application`_ class.
244-
245242
Have fun!
246243

247244
.. _`Pimple`: https://github.com/silexphp/Pimple
248-
.. _`Silex`: http://silex.sensiolabs.org/
249245
.. _`Application`: https://github.com/silexphp/Silex/blob/master/src/Silex/Application.php

create_framework/http_foundation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,18 +285,18 @@ the wheel.
285285

286286
I've almost forgot to talk about one added benefit: using the HttpFoundation
287287
component is the start of better interoperability between all frameworks and
288-
applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 3`_, `ezPublish
289-
5`_, `Laravel`_, `Silex`_ and `more`_).
288+
`applications using it`_ (like `Symfony`_, `Drupal 8`_, `phpBB 3`_, `ezPublish
289+
5`_, `Laravel`_ and `more`_).
290290

291291
.. _`Twig`: https://twig.symfony.com/
292292
.. _`HTTP specification`: https://tools.ietf.org/wg/httpbis/
293293
.. _`audited`: https://symfony.com/blog/symfony2-security-audit
294+
.. _`applications using it`: https://symfony.com/components/HttpFoundation
294295
.. _`Symfony`: https://symfony.com/
295296
.. _`Drupal 8`: https://drupal.org/
296297
.. _`phpBB 3`: https://www.phpbb.com/
297298
.. _`ezPublish 5`: https://ez.no/
298299
.. _`Laravel`: https://laravel.com/
299-
.. _`Silex`: https://silex.sensiolabs.org/
300300
.. _`Midgard CMS`: http://www.midgard-project.org/
301301
.. _`Zikula`: https://zikula.org/
302302
.. _`autoloaded`: https://php.net/autoload

create_framework/http_kernel_httpkernel_class.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Hopefully, you now have a better understanding of why the simple looking
195195
``HttpKernelInterface`` is so powerful. Its default implementation,
196196
``HttpKernel``, gives you access to a lot of cool features, ready to be used
197197
out of the box, with no efforts. And because HttpKernel is actually the code
198-
that powers the Symfony and Silex frameworks, you have the best of both
198+
that powers the Symfony framework, you have the best of both
199199
worlds: a custom framework, tailored to your needs, but based on a rock-solid
200200
and well maintained low-level architecture that has been proven to work for
201201
many websites; a code that has been audited for security issues and that has

create_framework/introduction.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@ a fully-featured full-stack web framework.
4141
And of course, each step will be the occasion to learn more about some of the
4242
Symfony Components.
4343

44-
.. tip::
45-
46-
If you don't have time to read the whole book, or if you want to get
47-
started fast, you can also have a look at `Silex`_, a micro-framework
48-
based on the Symfony Components. The code is rather slim and it leverages
49-
many aspects of the Symfony Components.
50-
5144
Many modern web frameworks advertize themselves as being MVC frameworks. This
5245
tutorial won't talk about the MVC pattern, as the Symfony Components are able to
5346
create any type of frameworks, not just the ones that follow the MVC
@@ -121,5 +114,4 @@ In the :doc:`next chapter </create_framework/http_foundation>`, we are going to
121114
introduce the HttpFoundation Component and see what it brings us.
122115

123116
.. _`Symfony`: https://symfony.com/
124-
.. _`Silex`: http://silex.sensiolabs.org/
125117
.. _`Composer`: http://packagist.org/about-composer

0 commit comments

Comments
 (0)