You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Readme.md
+3-26
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Disclaimer: Doing this in PHP is not as easy as in programming languages which s
16
16
* Automatically records and replays your HTTP(s) interactions with minimal setup/configuration code.
17
17
* Supports common http functions and extensions
18
18
* everyting using [streamWrapper](http://php.net/manual/en/class.streamwrapper.php): fopen(), fread(), file_get_contents(), ... without any modification (except `$http_response_header` see #96)
19
-
*[SoapClient](http://www.php.net/manual/en/soapclient.soapclient.php) by adding `\VCR\VCR\turnOn();` in your `tests/bootstrap.php`
19
+
*[SoapClient](http://www.php.net/manual/en/soapclient.soapclient.php) by adding `\VCR\VCR::turnOn();` in your `tests/bootstrap.php`
20
20
* curl(), by adding `\VCR\VCR::turnOn();` in your `tests/bootstrap.php`
21
21
* The same request can receive different responses in different tests -- just use different cassettes.
22
22
* Disables all HTTP requests that you don't explicitly allow by [setting the record mode](http://php-vcr.github.io/documentation/configuration/)
@@ -118,33 +118,10 @@ phpunit ./tests
118
118
119
119
**The changelog has moved to the [PHP-VCR releases page](https://github.com/php-vcr/php-vcr/releases).**
120
120
121
-
Old changelog entries:
122
-
123
-
* 2014-10-23 Release 1.1.6: #73, #74, #75, improvements for JSON storage and binary requests.
124
-
* 2014-09-11 Release 1.1.5: Fixes #58#60, #61, #69 updated vendors and new record mode.
0 commit comments