Skip to content

Commit 107a19c

Browse files
committed
Fix docs for changelog and type
1 parent 0b97749 commit 107a19c

File tree

2 files changed

+31
-26
lines changed

2 files changed

+31
-26
lines changed

Readme.md

+3-26
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Disclaimer: Doing this in PHP is not as easy as in programming languages which s
1616
* Automatically records and replays your HTTP(s) interactions with minimal setup/configuration code.
1717
* Supports common http functions and extensions
1818
* 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`
2020
* curl(), by adding `\VCR\VCR::turnOn();` in your `tests/bootstrap.php`
2121
* The same request can receive different responses in different tests -- just use different cassettes.
2222
* 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
118118

119119
**The changelog has moved to the [PHP-VCR releases page](https://github.com/php-vcr/php-vcr/releases).**
120120

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.
125-
* 2014-04-26 Release 1.1.4: Fixes #50, #52, #53, #54, #56 and better error messages.
126-
* 2014-04-12 Release 1.1.3: Fixes #48: Allows data to be passed to CURLOPT_POSTFIELDS.
127-
* 2014-02-27 Release 1.1.2: Fix for storing the request body.
128-
* 2014-02-27 Release 1.1.1: Fix for non-GET requests with Guzzle.
129-
* 2014-02-22 Release 1.1.0: Removes curl runkit library hook and additional cleanup.
130-
* 2014-02-19 Release 1.0.7: Adds query request matcher.
131-
* 2014-01-12 Release 1.0.6: Updates dependencies.
132-
* 2013-10-13 Release 1.0.5: Fixed SOAP support, refactorings.
133-
* 2013-07-22 Release 1.0.4: Updates dependencies.
134-
* 2013-06-05 Release 1.0.3: Added curl_rewrite (in addition to curl_runkit) to overwrite curl functions.
135-
* 2013-05-15 Release 1.0.0
136-
* 2013-05-15 Adds PHPUnit annotations using [phpunit-testlistener-vcr](https://github.com/php-vcr/phpunit-testlistener-vcr)
137-
* 2013-05-14 Easier API (static method calls)
138-
* 2013-02-22 Added YAML support
139-
* 2013-02-21 Added custom request matcher
140-
* 2013-02-21 Added JSON storage which uses less memory
141-
* 2013-02-21 Added support for binary data
142-
* 2013-02-20 Added Soap support
143-
* 2013-02-19 Curl hook fixes, more tests
144-
* 2013-02-18 First prototype
121+
[Old changelog entries](docs/old-changelog.md)
145122

146123
## Copyright
147-
Copyright (c) 2013 Adrian Philipp. Released under the terms of the MIT license. See LICENSE for details.
124+
Copyright (c) 2013-2016 Adrian Philipp. Released under the terms of the MIT license. See LICENSE for details.
148125

149126
<!--
150127
name of the projects and all sub-modules and libraries (sometimes they are named different and very confusing to new users)

docs/old-changelog.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## Changelog
2+
3+
**The changelog has moved to the [PHP-VCR releases page](https://github.com/php-vcr/php-vcr/releases).**
4+
5+
Old changelog entries:
6+
7+
* 2014-10-23 Release 1.1.6: #73, #74, #75, improvements for JSON storage and binary requests.
8+
* 2014-09-11 Release 1.1.5: Fixes #58 #60, #61, #69 updated vendors and new record mode.
9+
* 2014-04-26 Release 1.1.4: Fixes #50, #52, #53, #54, #56 and better error messages.
10+
* 2014-04-12 Release 1.1.3: Fixes #48: Allows data to be passed to CURLOPT_POSTFIELDS.
11+
* 2014-02-27 Release 1.1.2: Fix for storing the request body.
12+
* 2014-02-27 Release 1.1.1: Fix for non-GET requests with Guzzle.
13+
* 2014-02-22 Release 1.1.0: Removes curl runkit library hook and additional cleanup.
14+
* 2014-02-19 Release 1.0.7: Adds query request matcher.
15+
* 2014-01-12 Release 1.0.6: Updates dependencies.
16+
* 2013-10-13 Release 1.0.5: Fixed SOAP support, refactorings.
17+
* 2013-07-22 Release 1.0.4: Updates dependencies.
18+
* 2013-06-05 Release 1.0.3: Added curl_rewrite (in addition to curl_runkit) to overwrite curl functions.
19+
* 2013-05-15 Release 1.0.0
20+
* 2013-05-15 Adds PHPUnit annotations using [phpunit-testlistener-vcr](https://github.com/php-vcr/phpunit-testlistener-vcr)
21+
* 2013-05-14 Easier API (static method calls)
22+
* 2013-02-22 Added YAML support
23+
* 2013-02-21 Added custom request matcher
24+
* 2013-02-21 Added JSON storage which uses less memory
25+
* 2013-02-21 Added support for binary data
26+
* 2013-02-20 Added Soap support
27+
* 2013-02-19 Curl hook fixes, more tests
28+
* 2013-02-18 First prototype

0 commit comments

Comments
 (0)