allmarkedup / ffs
Filename-based metadata for your filesystem.
Installs: 41
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/allmarkedup/ffs
Requires
- symfony/finder: ~2.5
- symfony/yaml: ~2.6
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.3
This package is not auto-updated.
Last update: 2025-10-07 08:35:19 UTC
README
Filesystem file finder and filterer with special support for YAML front-matter.
Built on top of the Symfony Finder component.
<?php use Amu\Ffs\Finder; $fs = new Finder(__DIR__); foreach($fs->titleContains('hello') as $item) { echo $item->getFilename() . "<br>\n"; } $fs = new Finder(__DIR__); foreach($fs->idEquals("12345") as $item) { echo $item->getFilename() . "<br>\n"; }