Commit c24aab49 authored by Fabien Potencier's avatar Fabien Potencier

fixed website URL

parent 7ea8fa5d
...@@ -65,7 +65,7 @@ Silex is licensed under the MIT license. ...@@ -65,7 +65,7 @@ Silex is licensed under the MIT license.
.. _Symfony components: http://symfony.com .. _Symfony components: http://symfony.com
.. _Composer: http://getcomposer.org .. _Composer: http://getcomposer.org
.. _PHPUnit: https://phpunit.de .. _PHPUnit: https://phpunit.de
.. _silex.zip: http://silex.sensiolabs.org/download .. _silex.zip: https://silex.symfony.com/download
.. _documentation: http://silex.sensiolabs.org/documentation .. _documentation: https://silex.symfony.com/documentation
.. _silex tag: https://stackoverflow.com/questions/tagged/silex .. _silex tag: https://stackoverflow.com/questions/tagged/silex
.. _open an issue: https://github.com/silexphp/Silex/issues/new .. _open an issue: https://github.com/silexphp/Silex/issues/new
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "silex/silex", "name": "silex/silex",
"description": "The PHP micro-framework based on the Symfony Components", "description": "The PHP micro-framework based on the Symfony Components",
"keywords": ["microframework"], "keywords": ["microframework"],
"homepage": "http://silex.sensiolabs.org", "homepage": "https://silex.symfony.com",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
......
...@@ -149,7 +149,7 @@ Finally, configure your `security.firewalls` key to use this authenticator: ...@@ -149,7 +149,7 @@ Finally, configure your `security.firewalls` key to use this authenticator:
// 'entry_point' => 'app.token_authenticator', // 'entry_point' => 'app.token_authenticator',
), ),
// configure where your users come from. Hardcode them, or load them from somewhere // configure where your users come from. Hardcode them, or load them from somewhere
// http://silex.sensiolabs.org/doc/providers/security.html#defining-a-custom-user-provider // https://silex.symfony.com/doc/providers/security.html#defining-a-custom-user-provider
'users' => array( 'users' => array(
//raw password = foo //raw password = foo
'victoria' => array('ROLE_USER', '$2y$10$3i9/lVd8UOFIJ6PAMFt8gu3/r5g0qeCJvoSlLCsvMTythye19F77a'), 'victoria' => array('ROLE_USER', '$2y$10$3i9/lVd8UOFIJ6PAMFt8gu3/r5g0qeCJvoSlLCsvMTythye19F77a'),
......
...@@ -46,5 +46,5 @@ Finally, the app is run. Visit ``/hello/world`` to see the result. It's really ...@@ -46,5 +46,5 @@ Finally, the app is run. Visit ``/hello/world`` to see the result. It's really
that easy! that easy!
.. _Symfony: http://symfony.com/ .. _Symfony: http://symfony.com/
.. _Pimple: http://pimple.sensiolabs.org/ .. _Pimple: https://pimple.symfony.com/
.. _Sinatra: http://www.sinatrarb.com/ .. _Sinatra: http://www.sinatrarb.com/
...@@ -2,7 +2,7 @@ Twig ...@@ -2,7 +2,7 @@ Twig
==== ====
The *TwigServiceProvider* provides integration with the `Twig The *TwigServiceProvider* provides integration with the `Twig
<http://twig.sensiolabs.org/>`_ template engine. <https://twig.symfony.com/>`_ template engine.
Parameters Parameters
---------- ----------
...@@ -14,7 +14,7 @@ Parameters ...@@ -14,7 +14,7 @@ Parameters
template contents. Use this if you want to define your templates inline. template contents. Use this if you want to define your templates inline.
* **twig.options** (optional): An associative array of twig * **twig.options** (optional): An associative array of twig
options. Check out the `twig documentation <http://twig.sensiolabs.org/doc/api.html#environment-options>`_ options. Check out the `twig documentation <https://twig.symfony.com/doc/api.html#environment-options>`_
for more information. for more information.
* **twig.form.templates** (optional): An array of templates used to render * **twig.form.templates** (optional): An array of templates used to render
...@@ -235,6 +235,6 @@ You can configure the Twig environment before using it by extending the ...@@ -235,6 +235,6 @@ You can configure the Twig environment before using it by extending the
}); });
For more information, check out the `official Twig documentation For more information, check out the `official Twig documentation
<http://twig.sensiolabs.org>`_. <https://twig.symfony.com>`_.
.. _reference: https://symfony.com/doc/current/reference/twig_reference.html#controller .. _reference: https://symfony.com/doc/current/reference/twig_reference.html#controller
...@@ -2,7 +2,7 @@ Services ...@@ -2,7 +2,7 @@ Services
======== ========
Silex is not only a framework, it is also a service container. It does this by Silex is not only a framework, it is also a service container. It does this by
extending `Pimple <http://pimple.sensiolabs.org>`_ which provides a very simple extending `Pimple <https://pimple.symfony.com>`_ which provides a very simple
service container. service container.
Dependency Injection Dependency Injection
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"name": "silex/api", "name": "silex/api",
"description": "The Silex interfaces", "description": "The Silex interfaces",
"keywords": ["microframework"], "keywords": ["microframework"],
"homepage": "http://silex.sensiolabs.org", "homepage": "https://silex.symfony.com",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"name": "silex/providers", "name": "silex/providers",
"description": "The Silex providers", "description": "The Silex providers",
"keywords": ["microframework"], "keywords": ["microframework"],
"homepage": "http://silex.sensiolabs.org", "homepage": "https://silex.symfony.com",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
......
...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface; ...@@ -17,7 +17,7 @@ use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
/** /**
* Enables name_of_service:method_name syntax for declaring controllers. * Enables name_of_service:method_name syntax for declaring controllers.
* *
* @see http://silex.sensiolabs.org/doc/providers/service_controller.html * @see https://silex.symfony.com/doc/providers/service_controller.html
*/ */
class ServiceControllerResolver implements ControllerResolverInterface class ServiceControllerResolver implements ControllerResolverInterface
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment