An open API service indexing awesome lists of open source software.

https://github.com/reinfi/zf-guzzle-emitter

Zend Framework Module to register emitter to guzzle client via configuration
https://github.com/reinfi/zf-guzzle-emitter

emitter guzzlehttp subscriber zend-framework

Last synced: 7 months ago
JSON representation

Zend Framework Module to register emitter to guzzle client via configuration

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/reinfi/zf-guzzle-emitter.svg?branch=master)](https://travis-ci.org/reinfi/zf-guzzle-emitter)
[![Code Climate](https://codeclimate.com/github/reinfi/zf-guzzle-emitter/badges/gpa.svg)](https://codeclimate.com/github/reinfi/zf-guzzle-emitter)
[![Coverage Status](https://coveralls.io/repos/github/reinfi/zf-guzzle-emitter/badge.svg?branch=master)](https://coveralls.io/github/reinfi/zf-guzzle-emitter?branch=master)

Configure guzzle emitter subscriber via configuration.

1. [Installation](#installation)
2. [Usage](#usage)

### Installation

1. Install with Composer: `composer require reinfi/zf-guzzle-emitter`.
2. Enable the module via ZF2 config in `appliation.config.php` under `modules` key:

```php
return [
'modules' => [
'Reinfi\GuzzleEmitter',
// other modules
],
];
```

### Usage
To use it you need to register your subscriber under the following config key.
```php
'guzzle_emitter' => [
'subscriber' => [
YourSubscriber::class,
],
]
```
All your subscribers must be registered within the service locator.

When you need to get a new guzzle client you just pass the following options
```php
$options = [
'emitter' => $container->get(\Reinfi\GuzzleEmitter\Emitter::class);,
'...' => '',
];

$client = new Client($options);
```

For information how to write subscriber see http://docs.guzzlephp.org/en/5.3/events.html#event-subscribers

### FAQ
Feel free to ask any questions or open own pull requests.