forked from FatherShawn/DrupalConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.yml
40 lines (40 loc) · 1.21 KB
/
services.yml
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
services:
parser:
class: Symfony\Component\Yaml\Parser
filesystem:
class: Symfony\Component\Filesystem\Filesystem
yaml:
class: Symfony\Component\Yaml\Yaml
config:
class: Drupal\Console\Config
arguments: ["@parser"]
requirement_checker:
class: Drupal\Console\Utils\RequirementChecker
arguments: ["@parser"]
redbean:
class: RedBeanPHP\R
annotation_reader:
class: Doctrine\Common\Annotations\AnnotationReader
annotation_file_cache:
class: Doctrine\Common\Annotations\FileCacheReader
factory: [Drupal\Console\Annotations\CacheFactory, createFileCache]
arguments: ['@annotation_reader', '@config']
command_dependency_resolver:
class: Drupal\Console\Command\CommandDependencies
arguments: ["@annotation_file_cache"]
file_util:
class: Drupal\Console\Utils\File
translator:
class: Drupal\Console\Utils\Translator
arguments: ["@parser", "@filesystem"]
site:
class: Drupal\Console\Utils\Site
arguments: ["@parser"]
chain_queue:
class: Drupal\Console\Utils\ChainQueue
showfile:
class: Drupal\Console\Utils\ShowFile
arguments: ["@site", "@translator"]
shell_process:
class: Drupal\Console\Utils\ShellProcess
arguments: ["@site"]