https://github.com/dantleech/glob
Library offering object location from hierarchrical persistent storage systems using globs
https://github.com/dantleech/glob
Last synced: about 1 year ago
JSON representation
Library offering object location from hierarchrical persistent storage systems using globs
- Host: GitHub
- URL: https://github.com/dantleech/glob
- Owner: dantleech
- License: mit
- Created: 2014-12-13T15:40:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T14:48:26.000Z (almost 10 years ago)
- Last Synced: 2025-03-27T14:55:01.088Z (over 1 year ago)
- Language: PHP
- Size: 29.3 KB
- Stars: 55
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Glob finder
[](http://travis-ci.org/dantleech/Glob)
[](https://packagist.org/packages/dantleech/glob-finder)
[](https://packagist.org/packages/dantleech/glob-finder)
This library provides a way of querying for objects from hierachical data
stores.
Currently support is only provided for [PHPCR](https://phpcr.github.io) and
[PHPCR-ODM](http://docs.dantleech-project.org/projects/dantleech-phpcr-odm/en/latest/)
````php
$documentManager = // get phpcr-odm document manager
$finder = new PhpcrOdmTraversalFinder($documentManager);
$finder->find('/cmf/articles/*');
````