该软件包最新版本(1.4.0)没有可用的许可证信息。

特定目录的Symbiotic PSR-4自动加载器。

1.4.0 2022-09-14 12:04 UTC

This package is auto-updated.

Last update: 2024-09-14 16:39:55 UTC


README

使用方法

// Include Autoloader file
include_once  $basePath.'/vendor/symbiotic/autoloader/src/Autoload/Autoloader.php';

$autoloaderConfig = [
    // Put the autoloader at the beginning of the queue
    'prepend' => false,
    // Directories for searching packages
    'scan_dirs' => [
         $basePath.'/modules',
         $basePath.'/plugins'
    ],
    // Directory for saving class maps
    'storage_path' => $basePath.'/protectedDir/'
    
];
Autoloader::register(
            $autoloaderConfig['prepend'] ?? false,
            $autoloaderConfig['scan_dirs'],
            $autoloaderConfig['storage_path']
        );