Valinor/tests/Integration
Maximilian Bösing ccf09fd334
feat: introduce method to warm the cache up
This new method can be used for instance in a pipeline during the build
and deployment of the application.

The cache has to be registered first, otherwise the warmup will end up
being useless.

```php
$cache = new \CuyZ\Valinor\Cache\FileSystemCache('path/to/cache-dir');

$mapperBuilder = (new \CuyZ\Valinor\MapperBuilder())->withCache($cache);

// During the build:
$mapperBuilder->warmup(SomeClass::class, SomeOtherClass::class);

// In the application:
$mapper->mapper()->map(SomeClass::class, [/* … */]);
```

Co-authored-by: Romain Canon <romain.hydrocanon@gmail.com>
2022-05-23 22:01:40 +02:00
..
Cache feat: introduce method to warm the cache up 2022-05-23 22:01:40 +02:00
Mapping feat: allow injecting a cache implementation that is used by the mapper 2022-05-23 20:28:02 +02:00
IntegrationTest.php feat: allow injecting a cache implementation that is used by the mapper 2022-05-23 20:28:02 +02:00