This repository has been deprecated as of 2019-01-27. That code was written a long time ago and has been unmaintained for several years. Thus, repository will now be archived. If you are interested in taking over ownership, feel free to contact me.
Framework to filter (extract,transform,evaluate) data based on rules
[todo]
- PHP >= 5.5
The recommended way to install data-filtering is through Composer.
curl -sS https://getcomposer.org/installer | php
Next, update your project's composer.json file to include data-filtering:
{
"repositories": [ { "type": "composer", "url": "http://packages.myseosolution.de/"} ],
"minimum-stability": "dev",
"require": {
"paslandau/data-filtering": "dev-master"
}
"config": {
"secure-http": false
}
}
Caution: You need to explicitly set "secure-http": false in order to access http://packages.myseosolution.de/ as repository.
This change is required because composer changed the default setting for secure-http to true at the end of february 2016.
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';