asar / classloader
Modified PSR-0 ClassLoader
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/asar/classloader
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-09-27 18:56:50 UTC
README
AsarClassLoader is a slightly modified version of the SplClassLoader.
The modification now allows for loading single classes (e.g. Pimple.php). This class loader was created to prevent conflicts when using the original SplClassLoader.
Usage:
$classLoader = new \Asar\ClassLoader('Doctrine\Common', '/path/to/doctrine'); $classLoader->register(); $classLoader = new \Asar\ClassLoader('Pimple', '/path/to/pimple'); $classLoader->register();