Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Commit

Permalink
readme: change HTTP urls to HTTPS
Browse files Browse the repository at this point in the history
On those that support HTTPS.
Especially since there is a login + passphrase example.
  • Loading branch information
tuxayo committed Jul 28, 2016
1 parent 3cbc6ed commit 0280e19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Make requests with the ``request()`` method:
.. code-block:: php
// Go to the symfony.com website
$crawler = $client->request('GET', 'http://www.symfony.com/blog/');
$crawler = $client->request('GET', 'https://www.symfony.com/blog/');
The method returns a ``Crawler`` object
(``Symfony\Component\DomCrawler\Crawler``).
Expand Down Expand Up @@ -77,7 +77,7 @@ Submit forms:

.. code-block:: php
$crawler = $client->request('GET', 'http://github.com/');
$crawler = $client->request('GET', 'https://github.com/');
$crawler = $client->click($crawler->selectLink('Sign in')->link());
$form = $crawler->selectButton('Sign in')->form();
$crawler = $client->submit($form, array('login' => 'fabpot', 'password' => 'xxxxxx'));
Expand All @@ -89,7 +89,7 @@ More Information
----------------

Read the documentation of the BrowserKit and `DomCrawler
<http://symfony.com/doc/any/components/dom_crawler.html>`_ Symfony Components
<https://symfony.com/doc/any/components/dom_crawler.html>`_ Symfony Components
for more information about what you can do with Goutte.

Pronunciation
Expand All @@ -111,5 +111,5 @@ License

Goutte is licensed under the MIT license.

.. _`Composer`: http://getcomposer.org
.. _`Composer`: https://getcomposer.org
.. _`Guzzle`: http://docs.guzzlephp.org

0 comments on commit 0280e19

Please sign in to comment.