PHPackages                             phix/autoloader - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. phix/autoloader

ActiveLibrary

phix/autoloader
===============

Phix's Autoloader is a PSR0-compliant autoloader which supports PHP's include\_path

4.3.3(12y ago)233.9k↓50%111BSD-3-ClausePHP

Since Jun 8Pushed 12y ago1 watchersCompare

[ Source](https://github.com/stuartherbert/Autoloader)[ Packagist](https://packagist.org/packages/phix/autoloader)[ Docs](https://github.com/stuartherbert/Autoloader/)[ RSS](/packages/phix-autoloader/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (11)

Autoloader4
===========

[](#autoloader4)

**Autoloader4** is a simple-to-use PHP component that provides a generic, PSR0-compliant autoloader for use in PHP projects.

System-Wide Installation
------------------------

[](#system-wide-installation)

Autoloader4 should be installed using the [PEAR Installer](http://pear.php.net). This installer is the PHP community's de-facto standard for installing PHP components.

```
sudo pear channel-discover pear.phix-project.org
sudo pear install --alldeps phix/Autoloader4

```

As A Dependency On Your Component
---------------------------------

[](#as-a-dependency-on-your-component)

If you are creating a component that relies on Autoloader4, please make sure that you add Autoloader4 to your component's package.xml file:

```

      Autoloader4
      pear.phix-project.org
      4.0.0
      4.999.9999

```

Usage
-----

[](#usage)

Include the autoloader, and then tell it to start autoloading classes for you:

```
