vanengers / class-finder
Find classes (with namespaces) within folders
v1.1.1
2024-11-04 16:07 UTC
Requires
- php: ^8.0 || ^7.4
Requires (Dev)
- phpunit/phpunit: ^9.5
- symfony/finder: ^5.3
README
Find classes (with namespaces) within folders
Installation
composer require vanengers/class-finder
Usage
$finder = new ClassFinder();
$classes = $finder->getAllNameSpaces('/path/to/folder/to/search');
How it works.
Find all PHP classes in folder and subfolders. It will return an array with the full namespace of the class.