morgan / kohana-dataflow

Dataflow translates to or from XML, YAML, JSON, JSON-P and serialized PHP.
MIT License
49 stars 10 forks source link

:warning: Notice: The Kohana Framework announced official retirement on 07/01/2017. Therefore, this repository is no longer maintained.


Dataflow Module

Simple way of translating to or from XML, YAML, JSON, JSON-P and serialized PHP. Great for general usage or incorporating into a REST API.

// Set drivers (each key is config that passes through to its respective library, 
// `decode` to `Dataflow_Decode` and `encode` to `Dataflow_Encode`)
$config = array
(
    'decode' => array('driver' => 'YAML'),
    'encode' => array('driver' => 'XML')
);

// Example of converting XML to YAML and outputting results
echo Dataflow::factory($config)->set($xml);

// Convert any supported format to a standardized array
Dataflow::factory()
    ->set($input)
    ->as_array();

// Decode XML to an associative array
$array = Dataflow_Decode::factory(array('driver' => 'XML'))
    ->set($xml)
    ->get();

// Encode associative array to XML
$xml = Dataflow_Encode::factory(array('driver' => 'XML'))
    ->set($array)
    ->get();

Getting Started

Recommend starting out with Dataflow documentation using the User Guide module.

Learning & References

Version 0.5.0

This is release version 0.5.0 of Dataflow.