comparison vendor/symfony/class-loader/CHANGELOG.md @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
1 CHANGELOG
2 =========
3
4 3.3.0
5 -----
6
7 * deprecated the component: use Composer instead
8
9 3.0.0
10 -----
11
12 * The DebugClassLoader class has been removed
13 * The DebugUniversalClassLoader class has been removed
14 * The UniversalClassLoader class has been removed
15 * The ApcUniversalClassLoader class has been removed
16
17 2.4.0
18 -----
19
20 * deprecated the UniversalClassLoader in favor of the ClassLoader class instead
21 * deprecated the ApcUniversalClassLoader in favor of the ApcClassLoader class instead
22 * deprecated the DebugUniversalClassLoader in favor of the DebugClassLoader class from the Debug component
23 * deprecated the DebugClassLoader as it has been moved to the Debug component instead
24
25 2.3.0
26 -----
27
28 * added a WinCacheClassLoader for WinCache
29
30 2.1.0
31 -----
32
33 * added a DebugClassLoader able to wrap any autoloader providing a findFile
34 method
35 * added a new ApcClassLoader and XcacheClassLoader using composition to wrap
36 other loaders
37 * added a new ClassLoader which does not distinguish between namespaced and
38 pear-like classes (as the PEAR convention is a subset of PSR-0) and
39 supports using Composer's namespace maps
40 * added a class map generator
41 * added support for loading globally-installed PEAR packages