ClassFinder =========== A lightweight utility to identify classes in a given namespace. This package is an improved implementation of an [answer on Stack Overflow](https://stackoverflow.com/a/40229665/3000068) that provides additional features with less configuration required. Requirements ------------ * Application is using Composer. * Classes are compliant with PSR-4. * PHP >= 5.3.0 Known Limitations ----------------- * ClassFinder can only identify classes autoloaded with PSR-4. PSR-0, classmaps, and files are not supported. These limitations may eventually be fixed. Installing ---------- Installing is done by requiring it with Composer. ``` $ composer require haydenpierce/class-finder ``` No other installation methods are currently supported. Example ------- ```