diff --git a/README.md b/README.md index 98d501d..6e57073 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,23 @@ No other installation methods are currently supported. Supported Autoloading Methods -------------------------------- -* PSR-4 -* Classmaps -* Files (Experimental, must be explicitly enabled via `ClassFinder::enableExperimentalFilesSupport()`) +| Method | Supported | with `ClassFinder::RECURSIVE_MODE` | +| ---------- | --------- | ---------------------------------- | +| PSR-4 | ✔️ | ✔️ | +| PSR-0 | ❌️* | ❌️* | +| Classmap | ✔️ | ✔️ | +| Files | ✔️^ | ❌️** | +\^ Experimental. -Example -------- +\* Planned. + +\** Not planned. Open an issue if you need this feature. + +Examples +-------- + +**Standard Mode** ```