Skip to content

1.x #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 3, 2018
Merged

1.x #37

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 38 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,52 +1,69 @@
# Change Log


## UNRELEASED
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## Unreleased

- 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).

## [1.0.0] - 2018-11-03

### Changed

- 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).
- Make the test suite PHPUnit 6 compatible


## 0.5.1 - 2016-07-18
## [0.6.2] - 2017-07-10


## [0.6.1] - 2017-07-10


## [0.6.0] - 2017-05-29


## [0.5.1] - 2016-07-18

### Fixed

- Old name


## 0.5.0 - 2016-07-18
## [0.5.0] - 2016-07-18

### Changed

- Renamed to client-integration-tests
- Improved pacakge


## 0.4.0 - 2016-03-02
## [0.4.0] - 2016-03-02

### Removed

- Discovery dependency


## 0.3.1 - 2016-02-11
## [0.3.1] - 2016-02-11

### Changed

- Updated message dependency


## 0.3.0 - 2016-01-21
## [0.3.0] - 2016-01-21

### Changed

- Updated discovery dependency


## 0.2.0 - 2016-01-13
## [0.2.0] - 2016-01-13

### Changed

Expand All @@ -59,3 +76,16 @@
### Added

- Initial release


[Unreleased]: https://github.com/php-http/client-integration-tests/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/php-http/client-integration-tests/compare/v0.6.2...v1.0.0
[0.6.2]: https://github.com/php-http/client-integration-tests/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/php-http/client-integration-tests/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/php-http/client-integration-tests/compare/v0.5.1...v0.6.0
[0.5.1]: https://github.com/php-http/client-integration-tests/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/php-http/client-integration-tests/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/php-http/client-integration-tests/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/php-http/client-integration-tests/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/php-http/client-integration-tests/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/php-http/client-integration-tests/compare/v0.1.0...v0.2.0
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,37 @@

Via Composer

``` bash
```bash
$ composer require php-http/client-integration-tests
```


## Usage

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


### Running tests for HTTP Adapters

Start the HTTP Test server:

``` bash
```bash
$ vendor/bin/http_test_server
```

Install an adapter.

``` bash
```bash
$ composer require php-http/curl-client:dev-master zendframework/zend-diactoros
```

Run the tests.

``` bash
```bash
./vendor/bin/phpunit --testsuite curl --printer "Http\Client\Tests\ResultPrinter"
```


## Contributing

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