nayleen / finder
Yet another class finder implementation.
1.0
2024-01-08 23:56 UTC
Requires
- php: >=8.1
- roave/better-reflection: ^6
Requires (Dev)
- nayleen/codestandard: dev-latest
- nayleen/development-dependencies: ^3.3
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2024-10-30 12:17:45 UTC
README
Yet another class finder implementation.
Installation
composer require nayleen/finder
Usage
The finder comes with two different sets of classes: Engine
s and Expectation
s.
Engines
Currently supported Engine
implementations:
- BetterReflectionEngine (can find built-in and load classes from strings)
Engine
s provide iterators over class strings which can then be filtered using Expectation
s.
Expectations
Expectation
s filter the class strings according to certain criteria. They're chainable, composable and negatable. You can
(and should) write your own Expectation
s depending on your requirements in class filtering.
Building blocks (located in Nayleen\Finder\Expectation
sub-namespaces):
Combinator\Composed
- chains two expectation (like booleanAND
s)Combinator\Not
- negates a wrapped expectation
Concrete implementations:
Any
CallableExpectation
- wraps a callable with signature:callable(class-string): bool
ExtendsClass
HasAttribute
ImplementsInterface
IsInstantiable