aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/installer/container/services_file_updater.yml
blob: 9d39bb8b899c7afb286125c8be4ae5f3a876ae5c (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
services:
    installer.file_updater.factory:
        class: phpbb\install\helper\file_updater\factory
        arguments:
            - '@installer.file_updater.collection'

    installer.file_updater.collection:
        class: phpbb\di\service_collection
        arguments:
            - '@service_container'
        tags:
            - { name: service_collection, tag: file_updater }

    installer.file_updater.compress:
        class: phpbb\install\helper\file_updater\compression_file_updater
        arguments:
            - '@installer.helper.update_helper'
            - '%core.root_path%'
            - '%core.php_ext%'
        tags:
            - { name: file_updater }

    installer.file_updater.ftp:
        class: phpbb\install\helper\file_updater\ftp_file_updater
        arguments:
            - '@installer.helper.update_helper'
            - '%core.root_path%'
            - '%core.php_ext%'
        tags:
            - { name: file_updater }

    installer.file_updater.file:
        class: phpbb\install\helper\file_updater\file_updater
        arguments:
            - '@filesystem'
            - '%core.root_path%'
        tags:
            - { name: file_updater }