This repository has been archived by the owner on May 22, 2023. It is now read-only.
Releases: pmmp/ClassLoader
Releases · pmmp/ClassLoader
0.3.0
0.2.0
Changes since 0.1.x
- Accept pthreads ^4.0.
BaseClassLoader
now supports PSR-4 style namespace mappings via a$namespacePrefix
parameter toaddPath()
. An empty string can be passed to get the old PSR-0-ish behaviour.- Separate
DynamicClassLoader
fromClassLoader
.DynamicClassLoader
exposesaddPath()
(it's no longer present onClassLoader
itself). - Everything except
register()
has been removed fromClassLoader
. - Native parameter and return types are now used on all API methods.
BaseClassLoader
is greatly simplified:- No longer searches for 64/32-bit variants of classes.
__construct()
no longer accepts a$parent
argument.- Removed
getClasses()
- Removed
getParent()
- Removed
removePath()