Releases: ray-di/Ray.Compiler
Releases · ray-di/Ray.Compiler
1.9.0
1.8.0
1.7.0
1.6.0
1.5.0
Features
$cache = new ApcCache; // Doctrine\Common\Cache\Cache
$injector = CachedInjectorFactory::getInstance(
function () : AbstractModule {
return new ProdModule;
},
'path/to/di',
$cache, // injector + singleton object cache
[AbstractRootObject::class, CachedAnnotationReader::class] // 'serizalble singleton object'
);
Documented at #75
1.4.1
1.4.0
1.3.7
Fix autoloader. This PR solves class load issue brought by following PRs.
- ray-di/Ray.Aop#103 (27 days ago)
- ray-di/Ray.Di#193