plumphp/plum-finder

Integrations the Symfony Finder component into Plum.

v1.1.2 2015-04-28 20:31 UTC

This package is auto-updated.

Last update: 2024-02-20 07:59:37 UTC


README

PlumFinder integrates the Symfony Finder component into Plum. Plum is a data processing pipeline for PHP.

Build Status Windows Build status Scrutinizer Code Quality Code Coverage StyleCI

Developed by Florian Eckerstorfer in Vienna, Europe.

Installation

You can install Plum using Composer.

$ composer require plumphp/plum-finder

Usage

Please refer to the Plum documentation for more information about Plum in general.

PlumFinder includes Plum\PlumFinder\FinderReader to read directories and files from disk.

FinderReader

You can read directories and files using the Symfony Finder component and Plum\PlumFinder\FinderReader.

use Plum\PlumFinder\FinderReader;
use Symfony\Component\Finder\Finder;

$finder = new Finder();
// Further configuration of Finder

$reader = new FinderReader($finder);

Change Log

Version 1.1.2 (28 April 2015)

  • Fix Plum version

Version 1.1.1 (22 April 2015)

  • Set minimum Plum version to 0.2

Version 1.1 (22 April 2015)

  • Add support for ReaderFactory

Version 1.0 (17 February 2015)

  • Initial release

License

The MIT license applies to plumphp/plum-finder. For the full copyright and license information, please view the LICENSE file distributed with this source code.