Download the PHP package reliv/zf-input-filter-service without Composer
On this page you can find all versions of the php package reliv/zf-input-filter-service. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download reliv/zf-input-filter-service
More information about reliv/zf-input-filter-service
Files in reliv/zf-input-filter-service
Download reliv/zf-input-filter-service
More information about reliv/zf-input-filter-service
Files in reliv/zf-input-filter-service
Vendor reliv
Package zf-input-filter-service
Short Description Uses ZendFrameworks InputFilter config to build filters and validators from services from a general service container
License BSD-3-Clause
Homepage https://github.com/reliv/zf-input-filter-service
Package zf-input-filter-service
Short Description Uses ZendFrameworks InputFilter config to build filters and validators from services from a general service container
License BSD-3-Clause
Homepage https://github.com/reliv/zf-input-filter-service
Please rate this library. Is it a good library?
Informations about the package zf-input-filter-service
zf-input-filter-service
Allow services as input-filters
- Uses ZendFrameworks InputFilter config to build filters and validators from services from a general service container.
- Requires special config values to be added to ZFs standard config format
- Falls back to ZFs standard input filter factory
-
Utilizes config as:
[ 'test1' => [ 'name' => 'test1', 'required' => true, 'filters' => [ [ // Invoked 'name' => 'ZfInputFilterService\Filter\Test', 'options' => [ 'test' => 'filterOptionInvoked' ], ], [ // Service 'name' => 'ZfInputFilterService\Filter\TestService', 'service' => true, 'options' => [ 'test' => 'filterOptionService' ] ] ], 'validators' => [ [ // Invoked 'name' => 'ZfInputFilterService\Validator\Test', 'options' => [ 'test' => 'validatorOptionInvoked', 'messages' => [ 'TEST' => 'validatorMessageTemplateInvoked', ], ], ], [ // Service 'name' => 'ZfInputFilterService\Validator\TestService', 'service' => true, 'options' => [ 'test' => 'validatorOptionService', 'messages' => [ 'TEST' => 'validatorMessageTemplateService', ], ], ], ], ], // InputFilter Config Sevice 'subtest1' => [ // Service 'name' => 'subtest1', 'service' => true, 'type' => 'ZfInputFilterService\InputFilter\TestInputFilter', 'options' => [ 'test' => 'My test properties' ] ], ],
- NOTE: This is a basic hack to get around the silly way ZF input filters and the factory are written
All versions of zf-input-filter-service with dependencies
PHP Build Version
Package Version
The package reliv/zf-input-filter-service contains the following files
Loading the files please wait ....