Skip to content

Commit d0deb2b

Browse files
committed
Documented: Updates readme.
1 parent 8fbac53 commit d0deb2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ Disclaimer: Doing this in PHP is not as easy as in programming languages which s
1515
* Automatically records and replays your HTTP(s) interactions with minimal setup/configuration code.
1616
* Supports common http functions and extensions
1717
* everyting using [streamWrapper](http://php.net/manual/en/class.streamwrapper.php): fopen(), fread(), file_get_contents(), ... without any modification
18-
* [SoapClient](http://www.php.net/manual/en/soapclient.soapclient.php) using your own wrapper class
19-
* curl(), using [runkit extension](http://www.php.net/manual/en/book.runkit.php) and `runkit.internal_override=1` in your php.ini
20-
* Todo: curl_multi() (experimental support)
18+
* [SoapClient](http://www.php.net/manual/en/soapclient.soapclient.php) by adding `\VCR\VCR\turnOn();` in your `tests/boostrap.php`
19+
* curl(), either using [runkit extension](http://www.php.net/manual/en/book.runkit.php) and `runkit.internal_override=1` in your php.ini or by adding `\VCR\VCR\turnOn();` in your `tests/boostrap.php`
2120
* The same request can receive different responses in different tests--just use different cassettes.
2221
* Disables all HTTP requests that you don't explicitly allow (except SoapClient if not configured).
2322
* Request matching is configurable based on HTTP method, URI, host, path, body and headers, or you can easily
@@ -124,6 +123,7 @@ phpunit ./tests
124123

125124
## Changelog
126125

126+
* 2013-07-22 Release 1.0.5: Fixed SOAP support, refactorings.
127127
* 2013-07-22 Release 1.0.4: Updates dependencies.
128128
* 2013-06-05 Release 1.0.3: Added curl_rewrite (in addition to curl_runkit) to overwrite curl functions.
129129
* 2013-05-15 Release 1.0.0

0 commit comments

Comments
 (0)