forked from artetecha/platformsh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.yaml
65 lines (65 loc) · 2.38 KB
/
services.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
services:
activity_monitor:
class: '\Platformsh\Cli\Service\ActivityMonitor'
arguments: ['@output']
api:
class: '\Platformsh\Cli\Service\Api'
arguments: ['@config', '@cache']
cache:
class: '\Doctrine\Common\Cache\CacheProvider'
factory: 'cache_factory:createCacheProvider'
arguments: ['@config']
cache_factory:
class: '\Platformsh\Cli\Service\CacheFactory'
config:
class: '\Platformsh\Cli\Service\Config'
drush:
class: '\Platformsh\Cli\Service\Drush'
arguments: ['@config', '@shell']
fs:
class: '\Platformsh\Cli\Service\Filesystem'
arguments: ['@shell']
git:
class: '\Platformsh\Cli\Service\Git'
arguments: ['@shell']
local.build:
class: '\Platformsh\Cli\Local\LocalBuild'
arguments: ['@config', '@output', '@shell', '@fs', '@git', '@local.dependency_installer']
local.dependency_installer:
class: '\Platformsh\Cli\Local\DependencyInstaller'
arguments: ['@output', '@shell']
local.project:
class: '\Platformsh\Cli\Local\LocalProject'
arguments: ['@config', '@git']
output:
class: '\Symfony\Component\Console\Output\NullOutput'
property_formatter:
class: '\Platformsh\Cli\Service\PropertyFormatter'
arguments: ['@input']
question_helper:
class: '\Platformsh\Cli\Service\QuestionHelper'
arguments: ['@input', '@output']
remote_env_vars:
class: '\Platformsh\Cli\Service\RemoteEnvVars'
arguments: ['@ssh', '@cache', '@shell', '@config']
relationships:
class: '\Platformsh\Cli\Service\Relationships'
arguments: ['@remote_env_vars']
self_updater:
class: '\Platformsh\Cli\Service\SelfUpdater'
arguments: ['@input', '@output', '@config', '@question_helper']
shell:
class: '\Platformsh\Cli\Service\Shell'
arguments: ['@output']
ssh:
class: '\Platformsh\Cli\Service\Ssh'
arguments: ['@input', '@output']
state:
class: '\Platformsh\Cli\Service\State'
arguments: ['@config']
table:
class: '\Platformsh\Cli\Service\Table'
arguments: ['@input', '@output']
url:
class: '\Platformsh\Cli\Service\Url'
arguments: ['@shell', '@input', '@output']