Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / class-loader / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 3.0.0
5 -----
6
7  * The DebugClassLoader class has been removed
8  * The DebugUniversalClassLoader class has been removed
9  * The UniversalClassLoader class has been removed
10  * The ApcUniversalClassLoader class has been removed
11
12 2.4.0
13 -----
14
15  * deprecated the UniversalClassLoader in favor of the ClassLoader class instead
16  * deprecated the ApcUniversalClassLoader in favor of the ApcClassLoader class instead
17  * deprecated the DebugUniversalClassLoader in favor of the DebugClassLoader class from the Debug component
18  * deprecated the DebugClassLoader as it has been moved to the Debug component instead
19
20 2.3.0
21 -----
22
23  * added a WinCacheClassLoader for WinCache
24
25 2.1.0
26 -----
27
28  * added a DebugClassLoader able to wrap any autoloader providing a findFile
29    method
30  * added a new ApcClassLoader and XcacheClassLoader using composition to wrap
31    other loaders
32  * added a new ClassLoader which does not distinguish between namespaced and
33    pear-like classes (as the PEAR convention is a subset of PSR-0) and
34    supports using Composer's namespace maps
35  * added a class map generator
36  * added support for loading globally-installed PEAR packages