-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcli-container.php.dist
50 lines (47 loc) · 2.13 KB
/
cli-container.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* This file is part of the doctrine-manager package, a StreamCommon open software project.
*
* @copyright (c) 2019 StreamCommon Team
* @see https://github.com/streamcommon/doctrine-manager
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Streamcommon\Doctrine\Manager\ConfigProvider;
use Streamcommon\Doctrine\Manager\Common\Factory\{
Driver as DriverFactory,
EventManager as EventManagerFactory,
};
use Streamcommon\Doctrine\Manager\DBAL\Factory\Connection as ConnectionFactory;
use Streamcommon\Doctrine\Manager\ORM\Factory\{
Configuration as ConfigurationFactory,
EntityManager as EntityManagerFactory,
EntityResolver as EntityResolverFactory,
};
use Laminas\ServiceManager\ServiceManager;
$configProvider = new ConfigProvider();
$config = $configProvider();
$config['doctrine']['migrations']['orm_default'] = [
'table_storage' => [
'table_name' => 'doctrine_migration_versions',
'version_column_name' => 'version',
'version_column_length' => 1024,
'executed_at_column_name' => 'executed_at',
'execution_time_column_name' => 'execution_time',
],
'migrations_paths' => [
'MyProject\Migrations' => '/data/doctrine/migrations',
],
'all_or_nothing' => true,
'check_database_platform' => true,
];
$dependencies = $config['dependencies'];
$dependencies['factories']['doctrine.driver.orm_default' ] = [DriverFactory::class, 'orm_default'];
$dependencies['factories']['doctrine.event_manager.orm_default'] = [EventManagerFactory::class, 'orm_default'];
$dependencies['factories']['doctrine.configuration.orm_default'] = [ConfigurationFactory::class, 'orm_default'];
$dependencies['factories']['doctrine.connection.orm_default'] = [ConnectionFactory::class, 'orm_default'];
$dependencies['factories']['doctrine.entity_resolver.orm_default'] = [EntityResolverFactory::class, 'orm_default'];
$dependencies['factories']['doctrine.entity_manager.orm_default'] = [EntityManagerFactory::class, 'orm_default'];
$dependencies['services']['config'] = $config;
return new ServiceManager($dependencies);