Download the PHP package leodido/conversio without Composer
On this page you can find all versions of the php package leodido/conversio. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download leodido/conversio
More information about leodido/conversio
Files in leodido/conversio
Package conversio
Short Description A library that provides a simple infrastructure to create your own converters and to perform any conversion you want
License ISC
Informations about the package conversio
Conversio
Conversio is a PHP library that provides a simple infrastructure to create your own converters and to perform any conversion.
Explaination
The entry point for conversion is the class Conversion
, that acts as a filter (i.e., Zend\Filter\AbstractFilter
).
To implement a conversion you have to create an adapter (that will be passed to Conversion
class) that describes its process.
The adapters must implement the ConversionAlgorithmInterface
interface.
Furthermore, adapters can have options too, in the form of a Zend\Stdlib\AbstractOptions
subclass. Conversio library requires only that the options class of each adapter is called with the name of the adapter followed by the suffix "Options" (e.g., LanguageCodeOptions
is the option class of LanguageCode
adapter class).
In this case your adapter can extend AbstractOptionsEnabledAdapter
abstract class to take advantage of its options related methods.
The OptionsMap
class is an utility class aimed to create a option class starting from a configuration hash that describes the options (by name) and their admitted values.
Installation
Add leodido/conversio
to your composer.json
.
Usage
WIP
Converters
Here will be listed the converters created using Conversio library.