Initial import of composer dependencies (--no-dev)

This commit is contained in:
Kijin Sung 2016-01-06 19:21:31 +09:00
parent 71fc952126
commit 546606b208
696 changed files with 54815 additions and 44 deletions

23
vendor/rmccue/requests/docs/proxy.md vendored Normal file
View file

@ -0,0 +1,23 @@
Proxy Support
=============
You can easily make requests through HTTP proxies.
To make requests through an open proxy, specify the following options:
```php
$options = array(
'proxy' => '127.0.0.1:3128'
);
Requests::get('http://httpbin.org/ip', array(), $options);
```
If your proxy needs you to authenticate, the option will become an array like
the following:
```php
$options = array(
'proxy' => array( '127.0.0.1:3128', 'my_username', 'my_password' )
);
Requests::get('http://httpbin.org/ip', array(), $options);
```