plumphp / plum-finder
Integrations the Symfony Finder component into Plum.
Requires
- plumphp/plum: ~0.2
- symfony/finder: ~2.5
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.3
This package is auto-updated.
Last update: 2024-10-20 09:22:53 UTC
README
PlumFinder integrates the Symfony Finder component into Plum. Plum is a data processing pipeline for PHP.
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.