aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/installer/container/services_install_controller.yml
blob: 5be28c5746cc8041f3e05972b67e68a2b2e4e872 (plain)
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
51
services:
    phpbb.installer.controller.welcome:
        class: phpbb\install\controller\installer_index
        arguments:
            - '@phpbb.installer.controller.helper'
            - '@language'
            - '@template'
            - '%core.root_path%'

    phpbb.installer.controller.helper:
        class: phpbb\install\controller\helper
        arguments:
            - '@installer.helper.config'
            - '@language'
            - '@language.helper.language_file'
            - '@installer.navigation.provider'
            - '@template'
            - '@path_helper'
            - '@request'
            - '@symfony_request'
            - '@router'
            - '%core.root_path%'

    phpbb.installer.controller.install:
        class: phpbb\install\controller\install
        arguments:
            - '@phpbb.installer.controller.helper'
            - '@installer.helper.iohandler_factory'
            - '@installer.navigation.provider'
            - '@language'
            - '@template'
            - '@request'
            - '@installer.installer.install'
            - '@installer.helper.install_helper'

    phpbb.installer.controller.update:
        class: phpbb\install\controller\update
        arguments:
            - '@phpbb.installer.controller.helper'
            - '@installer.installer.update'
            - '@installer.helper.install_helper'
            - '@installer.helper.iohandler_factory'
            - '@language'
            - '@installer.navigation.provider'
            - '@request'
            - '@template'

    phpbb.installer.controller.file_downloader:
        class: phpbb\install\controller\archive_download
        arguments:
            - '@installer.helper.config'