Release 1.0.6 · phasync/phasync

I released phasync 1.0.6, including a PSR-18 HTTP client which is completely transparent while maintaining the standard interface:

```php <?php

use phasync\HttpClient\HttpClient;

require 'vendor/autoload.php';

$startTime = \microtime(true); $c = new HttpClient(); $res1 = $c->get('https://www.vg.no/'); $res2 = $c->get('https://www.dagbladet.no/'); $res3 = $c->get('https://www.netflix.com/');

// All of the above are concurrent requests that return a ResponseInterface. ```

It's quite cool that there is no need to create coroutines or work with promises in order to work with the client. You can issue requests whenever and access them in order or out of order.