From f7fca13795dfbe9c7f7464c45e7d17b35f03623b Mon Sep 17 00:00:00 2001 From: Hayden Pierce Date: Mon, 31 Dec 2018 19:52:49 -0600 Subject: [PATCH] Update docs --- README.md | 51 +++++++++++++++++++++++++++++++++++++------- docs/changelog.md | 54 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+), 8 deletions(-) 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** ```