| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- use Cycle\ORM\SchemaInterface;
- /** @see \Spiral\Cycle\Config\CycleConfig */
- return [
- 'schema' => [
- /**
- * true (Default) - Schema will be stored in a cache after compilation.
- * It won't be changed after entity modification. Use `php app.php cycle` to update schema.
- *
- * false - Schema won't be stored in a cache after compilation.
- * It will be automatically changed after entity modification. (Development mode)
- */
- 'cache' => true,
- /**
- * The CycleORM provides the ability to manage default settings for
- * every schema with not defined segments
- */
- 'defaults' => [
- SchemaInterface::MAPPER => \Cycle\ORM\Mapper\Mapper::class,
- SchemaInterface::REPOSITORY => \Cycle\ORM\Select\Repository::class,
- SchemaInterface::SCOPE => null,
- SchemaInterface::TYPECAST_HANDLER => [
- \Cycle\ORM\Parser\Typecast::class
- ],
- ],
- 'collections' => [
- 'default' => 'array',
- 'factories' => [
- 'array' => new \Cycle\ORM\Collection\ArrayCollectionFactory(),
- // 'doctrine' => new \Cycle\ORM\Collection\DoctrineCollectionFactory(),
- // 'illuminate' => new \Cycle\ORM\Collection\IlluminateCollectionFactory(),
- ],
- ],
- /**
- * Schema generators (Optional)
- * null (default) - Will be used schema generators defined in bootloaders
- */
- 'generators' => null,
- ],
- /**
- * Prepare all internal ORM services (mappers, repositories, typecasters...)
- */
- 'warmup' => \env('RR_MODE') !== null,
- ];
|