Skip to content
This repository has been archived by the owner on Feb 2, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (37 loc) · 2.36 KB

File metadata and controls

51 lines (37 loc) · 2.36 KB

zend-expressive-filter-delegator

License Latest Stable Version PHP 7 ready Build Status Coverage Status Total Downloads

Delegator for Zend FilterPluginManager

This package provides a delegator for the FilterPluginManager which configures the PluginManager to use the service configuration from filters from your config.

The package is intended to be used with Zend Expressive Skeleton or any other Zend Expressive application.

Installation

The easiest way to install this package is through composer:

$ composer require tobias/zend-expressive-filter-delegator

Configuration

In the general case where you are only using a single connection, it's enough to define the delegator factory for the FilterManager:

return [
    'dependencies' => [
        'delegators' => [
            'FilterManager' => [
                \Tobias\Expressive\Filter\FilterManagerDelegatorFactory::class,
            ],
        ],
    ],
];

Using Expressive Config Manager

If you're using the Expressive Config Manager you can easily add the ConfigProvider class.

$configManager = new ConfigManager(
    [
        \Tobias\Expressive\Filter\ConfigProvider::class,
    ]
);