PHPackages                             popphp/pop-loader - 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. [PSR &amp; Standards](/categories/psr-standards)
4. /
5. popphp/pop-loader

ActiveLibrary[PSR &amp; Standards](/categories/psr-standards)

popphp/pop-loader
=================

Pop Loader Component for Pop PHP Framework

3.1.1(3y ago)45.0k↓100%BSD-3-ClausePHPPHP &gt;=7.4.0

Since Jul 21Pushed 3y ago2 watchersCompare

[ Source](https://github.com/popphp/pop-loader)[ Packagist](https://packagist.org/packages/popphp/pop-loader)[ Docs](http://www.popphp.org/)[ RSS](/packages/popphp-pop-loader/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (18)Used By (0)

pop-loader
==========

[](#pop-loader)

[![Build Status](https://camo.githubusercontent.com/0610eeee6e4c3c41d7aa677f0e9e928886ff859ed1b6f8d65022b2f77b3a6ddf/68747470733a2f2f7472617669732d63692e6f72672f706f707068702f706f702d6c6f616465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/popphp/pop-loader)[![Coverage Status](https://camo.githubusercontent.com/f27ee5786502abfdb4b08567f14d0ac232393601fa9fff7c5794efebb9f9e4f9/687474703a2f2f63632e706f707068702e6f72672f636f7665726167652e7068703f636f6d703d706f702d6c6f61646572)](http://cc.popphp.org/pop-loader/)

OVERVIEW
--------

[](#overview)

`pop-loader` is a component for managing the autoloading of an application. If, for some reason you do not or cannot use Composer, `pop-loader` provides an alternative with similar features and API. It supports both PSR-4 and PSR-0 autoloading standards. Additionally, there is support for generating and loading class maps, if you are interested in boosting the speed and performance of your application's load times.

`pop-loader` is a component of the [Pop PHP Framework](http://www.popphp.org/).

INSTALL
-------

[](#install)

Download or clone this repository and follow the examples below to wire up the autoloading required by your application. Or, you can install `pop-loader` using Composer - ironic, I know :)

```
composer require popphp/pop-loader

```

BASIC USAGE
-----------

[](#basic-usage)

### Using PSR-4

[](#using-psr-4)

Let's say your app contains a src folder with a Test class in it like this:

```
app/
    src/
        Test.php

```

```
