1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-17 21:38:16 +01:00

28 Commits

Author SHA1 Message Date
Graham Campbell
702a359bcb
Removed unnecessary leading import slashes (#2788) 2020-09-30 12:02:39 +02:00
Graham Campbell
22bd6b7622 Updated old hyperlinks to their new locations 2020-01-19 11:27:25 +00:00
Alexey Shokov
8f10d0ea90 Custom option for cURL multi handler (#2287)
* Custom option for cURL multi handler

* Assertion fix
2019-10-23 18:13:30 +02:00
Tom Rochette
b9bf901212 Add missing 0 index to documentation making use of the getHeader method.
The getHeader method always returns an array, but it may be empty.
For documentation purpose, we assume that the response object always contains the queried header, thus providing at least one element in the array at index 0.
2017-12-08 15:57:46 -05:00
Andy Snell
3b60a95898
Align Heading Line Markdown 2017-10-23 10:07:50 -04:00
Andy Snell
513c7b7503
Fix Typo in FAQ Doc 2017-10-22 23:17:52 -04:00
Matthew Setter
72914532ad Minor text correction
I saw this grammatical error when I was reading through the
documentation today, and wanted to fix it.
2017-05-15 09:57:05 +02:00
Dan
77a16c8d30 Track redirect HTTP status codes (#1711) 2017-01-15 10:48:03 +01:00
Michael Dowling
196b301670 Cleaning up docs. Closes #1231, closes #1241 2015-09-06 11:18:04 -07:00
Michael Dowling
2325f7b1d3 Removing handler stack from the client 2015-04-17 19:59:11 -07:00
Michael Dowling
0949947ee2 Updating docs 2015-03-28 15:33:35 -07:00
Michael Dowling
7cc3409d22 Updating documentation 2015-03-21 19:30:11 -07:00
hakeda
c92fd22be3 Fix typos 2014-12-01 11:10:49 +00:00
Jonathan Klein
3f1c17c4a6 Fixing typos in the FAQ
The extra trailing quote marks are unnecessary/invalid, and break the syntax highlighting in the example (and would cause a syntax error in actual code).
2014-10-29 11:11:35 -04:00
Michael Dowling
2c2f1d7c47 Updating to use RingPHP and s/adapter/handle/g 2014-10-12 18:27:08 -07:00
Michael Dowling
c0214da718 More doc tweaks 2014-10-08 18:53:47 -07:00
Michael Dowling
bc26685386 Updating docs and readme 2014-10-08 18:35:23 -07:00
Michael Dowling
fd5c4261b3 Updating docs 2014-09-17 23:41:49 -07:00
Michael Dowling
7998fbdbcb Removing the bundled CA bundle completely
I've now removed the bundled CA bundle and will scan for a
CA bundle when using the PHP stream wrapper on PHP < 5.6.
This change will still work out of the box for most users,
but may require users on Mac or Windows to manually configure
a CA bundle using the `verify` request option or the
openssl.cafile ini setting.
2014-09-08 21:33:32 -07:00
David Prévot
9642625641 Documentation and comments: typo fix 2014-05-04 17:14:28 -04:00
Adrian Macneil
5dd09f8fc6 Fix typo 2014-04-06 10:08:54 +08:00
Michael Dowling
75e273655b Adding "why use Guzzle" to the FAQ 2014-03-30 16:24:47 -07:00
Michael Dowling
3472f1fb68 Renaming (g|s)etDefaultValue() to (g|s)etDefaultOption() 2014-03-24 19:44:55 -07:00
Michael Dowling
b30ce5d514 Making clients more immutable
- Removing getConfig() and setConfig() from clients to avoid confusion around
  whether things like base_url, message_factory, etc should be able to be
  retrieved from getConfig() or modified using setConfig().
- Adding getDefaults() and setDefaultValue() to customize default request
  options of a client.
- Updating Url class to check if a scheme and host are set before adding
  ":" and "//". This allows empty Url (e.g., "") to be serialized as "".
- Removing dead code from Url class.
- Adding a functions.php function for get_path and set_path so that these
  functions can be used on regular PHP arrays. Collection now proxies to these
  functions when Collection::(get|set)Path() is called.
- Resolves #599.
2014-03-21 12:37:32 -07:00
Michael Dowling
2971bb7dbf Fixing example 2014-03-17 22:01:48 -07:00
Michael Dowling
b9801df819 Adding the ability to specify custom stream context options and documentation on passing stream and curl options. 2014-03-17 21:56:15 -07:00
Michael Dowling
8bea66ff62 Finishing pending FAQ items 2014-03-10 21:42:01 -07:00
Michael Dowling
7368075cf9 Replacing HeaderValuesInterface with an array and adding docs.
- Instead of using a HeaderValues object for header values, I've added an
optional argument to getHeader() that specifies whether or not to return
a header as a string or an array.
- Adding the start of the new documentation.
2014-02-12 20:07:05 -08:00