mirror of
https://gh.wpcy.net/https://github.com/aspirepress/aspireupdate.git
synced 2026-07-15 09:36:33 +08:00
| .. | ||
| Autoloader.php | ||
| CHANGES.md | ||
| composer.json | ||
| LICENSE | ||
| README.md | ||
Autoloader
This repository contains a generic class autoloader that will load classes from a PSR-4 namespace root directory and an alternate directory/location for vendor or classmap of classes necessary for your plugin.
PRs welcome, especially for additional class aliases as you find needing them. Please refer to the readme in that folder for additional information on how to create these.
This is an alternative to composer's autoload creator.
$root = [ 'My_Namespace' => 'path/to/my-namespace' ];
$classmap = [
'Extra_Class' => 'path/to/extra-class.php',
'AnotherClass' => 'path/to/class-another.php',
];
require_once 'Autoloader.php';
new \Fragen\Autoloader( $root, $classmap );
Changelog
Credits
Built by Andy Fragen