tobias/zend-expressive-form-delegator

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

FormElementManager delegator to create forms, fieldsets and elements from config.

1.0.0 2016-12-23 11:59 UTC

This package is auto-updated.

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


README

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

Delegator for Zend FormElementManager

This package provides a delegator for the FormElementManager which configures the PluginManager to use the service configuration from form_elements 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-form-delegator

Configuration

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

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