aura/autoload
Composer 安装命令:
composer require aura/autoload
包简介
Provides a PSR-4 compliant autoloader implementation.
README 文档
README
Provides a full PSR-4 and limited PSR-0 autoloader. Although it is installable via Composer, its best use is probably outside a Composer-oriented project.
For a full PSR-0 only autoloader, please see Aura.Autoload v1.
Foreword
Installation
This library requires PHP 5.3 or later; we recommend using the latest available version of PHP as a matter of principle. It has no userland dependencies.
It is installable and autoloadable via Composer as aura/autoload.
Alternatively, download a release or clone this repository, then require or include its autoload.php file.
Quality
To run the unit tests at the command line, issue phpunit at the package root. (This requires PHPUnit to be available as phpunit.)
This library attempts to comply with PSR-1, PSR-2, and PSR-4. If you notice compliance oversights, please send a patch via pull request.
Community
To ask questions, provide feedback, or otherwise communicate with the Aura community, please join our Google Group, follow @auraphp on Twitter, or chat with us on #auraphp on Freenode.
Getting Started
To use the autoloader, first instantiate it, then register it with SPL autoloader stack:
<?php // instantiate $loader = new \Aura\Autoload\Loader; // append to the SPL autoloader stack; use register(true) to prepend instead $loader->register(); ?>
PSR-4 Namespace Prefixes
To add a namespace conforming to PSR-4 specifications, point to the base directory for that namespace. Multiple base directories are allowed, and will be searched in the order they are added.
<?php $loader->addPrefix('Foo\Bar', '/path/to/foo-bar/src'); $loader->addPrefix('Foo\Bar', '/path/to/foo-bar/tests'); ?>
To set several namespaces prefixes at once, overriding all previous prefix
settings, use setPrefixes().
<?php $loader->setPrefixes(array( 'Foo\Bar' => array( '/path/to/foo-bar/src', '/path/to/foo-bar/tests', ), 'Baz\Dib' => array( '/path/to/baz.dib/src', '/path/to/baz.dib/tests', ), )); ?>
PSR-0 Namespaces
To add a namespace conforming to PSR-0 specifications, one that uses only namespace separators in the class names (no underscores allowed!), point to the directory containing classes for that namespace. Multiple directories are allowed, and will be searched in the order they are added.
<?php $loader->addPrefix('Baz\Dib', '/path/to/baz-dib/src/Baz/Dib'); $loader->addPrefix('Baz\Dib', '/path/to/baz-dib/tests/Baz/Dib'); ?>
To set several namespaces prefixes at once, as with PSR-4, use setPrefixes().
Explicit Class-to-File Mappings
To map a class explictly to a file, use the setClassFile() method.
<?php $loader->setClassFile('Foo\Bar\Baz', '/path/to/Foo/Bar/Baz.php'); ?>
To set several class-to-file mappings at once, overriding all previous
mappings, use setClassFiles(). (Alternatively, use addClassFiles() to
append to the existing mappings.)
<?php $loader->setClassFiles(array( 'Foo\Bar\Baz' => '/path/to/Foo/Bar/Baz.php', 'Foo\Bar\Qux' => '/path/to/Foo/Bar/Qux.php', 'Foo\Bar\Quux' => '/path/to/Foo/Bar/Quux.php', )); ?>
Inspection and Debugging
These methods are available to inspect the Loader:
-
getPrefixes()returns all the added namespace prefixes and their base directories -
getClassFiles()returns all the explicit class-to-file mappings -
getLoadedClasses()returns all the class names loaded by theLoaderand the file names for the loaded classes
If a class file cannot be loaded for some reason, review the debug information
using getDebug(). This will show a log of information for the most-recent
autoload attempt involving the Loader.
<?php // set the wrong path for Foo\Bar classes $loader->addPrefix('Foo\Bar', '/wrong/path/to/foo-bar/src'); // this will fail $baz = new \Foo\Bar\Baz; // examine the debug information var_dump($loader->getDebug()); // array( // 'Loading Foo\\Bar\\Baz', // 'No explicit class file', // 'Foo\\Bar\\: /path/to/foo-bar/Baz.php not found', // 'Foo\\: no base dirs', // 'Foo\\Bar\\Baz not loaded', // ) ?>
aura/autoload 适用场景与选型建议
aura/autoload 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 511.84k 次下载、GitHub Stars 达 94, 最近一次更新时间为 2011 年 10 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「autoloader」 「autoload」 「SPL autoloader」 「class loader」 「PSR-4」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 aura/autoload 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 aura/autoload 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 aura/autoload 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Non-standard PHP library (NSPL) - functional primitives toolbox and more
Environment processor and contexts autoloader
Collection of exception class and utilities
An package to make it easy to autoload code.
Tune your autoloader
This package contains interfaces for notifications management and capabilities.
统计信息
- 总下载量: 511.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 102
- 点击次数: 35
- 依赖项目数: 11
- 推荐数: 0
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2011-10-16