tobias/zend-expressive-inputfilter-delegator

This package is abandoned and no longer maintained. No replacement package was suggested.

InputFilterPluginManager delegator to create input filters from config.

1.0.0 2016-12-23 13:57 UTC

This package is auto-updated.

Last update: 2020-02-01 19:24:08 UTC


README

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

Delegator for Zend InputFilterPluginManager

This package provides a delegator for the InputFilterPluginManager which configures the PluginManager to use the service configuration from input_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-inputfilter-delegator

Configuration

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

return [
    'dependencies' => [
        'delegators' => [
            'InputFilterManager' => [
                \Tobias\Expressive\InputFilter\InputFilterManagerDelegatorFactory::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\InputFilter\ConfigProvider::class,
    ]
);