Skip to content

Commit bdd5594

Browse files
Merge pull request #37 from php-http/1.x
1.x
2 parents 932a3ca + 30ae155 commit bdd5594

File tree

2 files changed

+44
-13
lines changed

2 files changed

+44
-13
lines changed

CHANGELOG.md

Lines changed: 38 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,69 @@
11
# Change Log
22

33

4-
## UNRELEASED
4+
All notable changes to this project will be documented in this file.
5+
6+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8+
9+
10+
## Unreleased
511

6-
- Don't test `TRACE` requests with request bodies, as they're not valid requests according to the [RFC](https://tools.ietf.org/html/rfc7231#section-4.3.8).
12+
13+
## [1.0.0] - 2018-11-03
714

815
### Changed
916

17+
- Don't test `TRACE` requests with request bodies, as they're not valid requests according to the [RFC](https://tools.ietf.org/html/rfc7231#section-4.3.8).
1018
- Make the test suite PHPUnit 6 compatible
1119

1220

13-
## 0.5.1 - 2016-07-18
21+
## [0.6.2] - 2017-07-10
22+
23+
24+
## [0.6.1] - 2017-07-10
25+
26+
27+
## [0.6.0] - 2017-05-29
28+
29+
30+
## [0.5.1] - 2016-07-18
1431

1532
### Fixed
1633

1734
- Old name
1835

1936

20-
## 0.5.0 - 2016-07-18
37+
## [0.5.0] - 2016-07-18
2138

2239
### Changed
2340

2441
- Renamed to client-integration-tests
2542
- Improved pacakge
2643

2744

28-
## 0.4.0 - 2016-03-02
45+
## [0.4.0] - 2016-03-02
2946

3047
### Removed
3148

3249
- Discovery dependency
3350

3451

35-
## 0.3.1 - 2016-02-11
52+
## [0.3.1] - 2016-02-11
3653

3754
### Changed
3855

3956
- Updated message dependency
4057

4158

42-
## 0.3.0 - 2016-01-21
59+
## [0.3.0] - 2016-01-21
4360

4461
### Changed
4562

4663
- Updated discovery dependency
4764

4865

49-
## 0.2.0 - 2016-01-13
66+
## [0.2.0] - 2016-01-13
5067

5168
### Changed
5269

@@ -59,3 +76,16 @@
5976
### Added
6077

6178
- Initial release
79+
80+
81+
[Unreleased]: https://github.com/php-http/client-integration-tests/compare/v1.0.0...HEAD
82+
[1.0.0]: https://github.com/php-http/client-integration-tests/compare/v0.6.2...v1.0.0
83+
[0.6.2]: https://github.com/php-http/client-integration-tests/compare/v0.6.1...v0.6.2
84+
[0.6.1]: https://github.com/php-http/client-integration-tests/compare/v0.6.0...v0.6.1
85+
[0.6.0]: https://github.com/php-http/client-integration-tests/compare/v0.5.1...v0.6.0
86+
[0.5.1]: https://github.com/php-http/client-integration-tests/compare/v0.5.0...v0.5.1
87+
[0.5.0]: https://github.com/php-http/client-integration-tests/compare/v0.4.0...v0.5.0
88+
[0.4.0]: https://github.com/php-http/client-integration-tests/compare/v0.3.1...v0.4.0
89+
[0.3.1]: https://github.com/php-http/client-integration-tests/compare/v0.3.0...v0.3.1
90+
[0.3.0]: https://github.com/php-http/client-integration-tests/compare/v0.2.0...v0.3.0
91+
[0.2.0]: https://github.com/php-http/client-integration-tests/compare/v0.1.0...v0.2.0

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,37 @@
1111

1212
Via Composer
1313

14-
``` bash
14+
```bash
1515
$ composer require php-http/client-integration-tests
1616
```
1717

1818

1919
## Usage
2020

21-
This package should not be used on its own. It provides integration tests for HTTP Adapters.
21+
This package should not be used on its own. It provides integration tests for HTTP Clients.
2222

2323

2424
### Running tests for HTTP Adapters
2525

2626
Start the HTTP Test server:
2727

28-
``` bash
28+
```bash
2929
$ vendor/bin/http_test_server
3030
```
3131

3232
Install an adapter.
3333

34-
``` bash
34+
```bash
3535
$ composer require php-http/curl-client:dev-master zendframework/zend-diactoros
3636
```
3737

3838
Run the tests.
3939

40-
``` bash
40+
```bash
4141
./vendor/bin/phpunit --testsuite curl --printer "Http\Client\Tests\ResultPrinter"
4242
```
4343

44+
4445
## Contributing
4546

4647
Please see our [contributing guide](http://docs.php-http.org/en/latest/development/contributing.html).

0 commit comments

Comments
 (0)