PlumFinder integrates the Symfony Finder component into Plum. Plum is a data processing pipeline for PHP.
Developed by Florian Eckerstorfer in Vienna, Europe.
You can install Plum using Composer.
$ composer require plumphp/plum-finderPlease refer to the Plum documentation for more information about Plum in general.
PlumFinder includes Plum\PlumFinder\FinderReader to read directories and files from disk.
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);- Fix Plum version
- Set minimum Plum version to 0.2
- Add support for ReaderFactory
- Initial release
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.