2017 © Pedro Peláez
 

library autoload

Provides a PSR-4 compliant autoloader implementation.

image

aura/autoload

Provides a PSR-4 compliant autoloader implementation.

  • Monday, October 3, 2016
  • by pmjones
  • Repository
  • 15 Watchers
  • 85 Stars
  • 41,385 Installations
  • PHP
  • 10 Dependents
  • 0 Suggesters
  • 22 Forks
  • 2 Open issues
  • 12 Versions
  • 5 % Grown

The README.md

Aura.Autoload

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., (*1)

For a full PSR-0 only autoloader, please see Aura.Autoload v1., (*2)

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., (*3)

It is installable and autoloadable via Composer as aura/autoload., (*4)

Alternatively, download a release or clone this repository, then require or include its autoload.php file., (*5)

Quality

Scrutinizer Code Quality Code Coverage Build Status, (*6)

To run the unit tests at the command line, issue phpunit at the package root. (This requires PHPUnit to be available as phpunit.), (*7)

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., (*8)

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., (*9)

Getting Started

To use the autoloader, first instantiate it, then register it with SPL autoloader stack:, (*10)

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., (*11)

<?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()., (*12)

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., (*13)

<?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()., (*14)

Explicit Class-to-File Mappings

To map a class explictly to a file, use the setClassFile() method., (*15)

<?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.), (*16)

<?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:, (*17)

  • getPrefixes() returns all the added namespace prefixes and their base directories, (*18)

  • getClassFiles() returns all the explicit class-to-file mappings, (*19)

  • getLoadedClasses() returns all the class names loaded by the Loader and the file names for the loaded classes, (*20)

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., (*21)

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',
// )
?>

The Versions

03/10 2016

2.x-dev

2.9999999.9999999.9999999-dev https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

03/10 2016

2.0.4

2.0.4.0 https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

04/04 2015

1.x-dev

1.9999999.9999999.9999999-dev http://auraphp.github.com/Aura.Autoload

The Aura Autoload package provides a [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) compliant SPL autoloader implementation for PHP. It also matches the proposed [SplClassLoader](https://wiki.php.net/rfc/splclassloader) interface.

  Sources   Download

BSD-2-Clause

The Requires

 

autoloader autoload psr-0 spl autoloader class loader splclassloader

27/03 2015

2.0.3

2.0.3.0 https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

27/03 2015

2.0.2

2.0.2.0 https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

15/03 2015

2.0.1

2.0.1.0 https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

04/10 2014

2.0.0

2.0.0.0 https://github.com/auraphp/Aura.Autoload

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

31/05 2014

1.0.3

1.0.3.0 http://auraphp.com/Aura.Autoload

The Aura Autoload package provides a [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) compliant SPL autoloader implementation for PHP. It also matches the proposed [SplClassLoader](https://wiki.php.net/rfc/splclassloader) interface.

  Sources   Download

BSD-2-Clause

The Requires

 

autoloader autoload psr-0 spl autoloader class loader splclassloader

02/01 2014

2.0.0-beta1

2.0.0.0-beta1 https://github.com/auraphp/Aura.Autoload/releases

Provides a PSR-4 compliant autoloader implementation.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.3.0

 

autoloader autoload psr-4 spl autoloader class loader

09/09 2013

1.0.2

1.0.2.0 http://auraphp.com/Aura.Autoload

The Aura Autoload package provides a [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md) compliant SPL autoloader implementation for PHP. It also matches the proposed [SplClassLoader](https://wiki.php.net/rfc/splclassloader) interface.

  Sources   Download

BSD-2-Clause

The Requires

 

autoloader autoload psr-0 spl autoloader class loader splclassloader

12/04 2013

1.0.1

1.0.1.0 http://auraphp.github.com/Aura.Autoload

The Aura Autoload package provides a PSR-0 compliant SPL autoloader implementation for PHP. It also matches the proposed SplClassLoader interface. [PSR-0]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md [SplClassLoader]: https://wiki.php.net/rfc/splclassloader

  Sources   Download

BSD-2-Clause

The Requires

 

autoloader autoload psr-0 spl autoloader class loader splclassloader

27/11 2012

1.0.0

1.0.0.0 http://auraphp.github.com/Aura.Autoload

The Aura Autoload package provides a PSR-0 compliant SPL autoloader implementation for PHP. It also matches the proposed SplClassLoader interface. [PSR-0]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md [SplClassLoader]: https://wiki.php.net/rfc/splclassloader

  Sources   Download

BSD

The Requires

 

autoloader autoload psr-0 spl autoloader class loader splclassloader