2013-01-08 22:09:14 -06:00
|
|
|
services:
|
|
|
|
migrator:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\db\migrator
|
2013-01-08 22:09:14 -06:00
|
|
|
arguments:
|
|
|
|
- @config
|
|
|
|
- @dbal.conn
|
|
|
|
- @dbal.tools
|
|
|
|
- %tables.migrations%
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- %core.table_prefix%
|
|
|
|
- @migrator.tool_collection
|
2014-02-05 09:57:36 -06:00
|
|
|
- @migrator.helper
|
|
|
|
|
|
|
|
migrator.helper:
|
|
|
|
class: phpbb\db\migration\helper
|
2013-01-08 22:09:14 -06:00
|
|
|
|
|
|
|
migrator.tool_collection:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\di\service_collection
|
2013-01-08 22:09:14 -06:00
|
|
|
arguments:
|
|
|
|
- @service_container
|
|
|
|
tags:
|
|
|
|
- { name: service_collection, tag: migrator.tool }
|
|
|
|
|
|
|
|
migrator.tool.config:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\db\migration\tool\config
|
2013-01-08 22:09:14 -06:00
|
|
|
arguments:
|
|
|
|
- @config
|
|
|
|
tags:
|
|
|
|
- { name: migrator.tool }
|
|
|
|
|
|
|
|
migrator.tool.module:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\db\migration\tool\module
|
2013-01-08 22:09:14 -06:00
|
|
|
arguments:
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache
|
|
|
|
- @user
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
- %tables.modules%
|
|
|
|
tags:
|
|
|
|
- { name: migrator.tool }
|
|
|
|
|
|
|
|
migrator.tool.permission:
|
2013-09-10 14:01:09 +02:00
|
|
|
class: phpbb\db\migration\tool\permission
|
2013-01-08 22:09:14 -06:00
|
|
|
arguments:
|
|
|
|
- @dbal.conn
|
|
|
|
- @cache
|
|
|
|
- @auth
|
|
|
|
- %core.root_path%
|
|
|
|
- %core.php_ext%
|
|
|
|
tags:
|
|
|
|
- { name: migrator.tool }
|