-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathservices.xml
82 lines (67 loc) · 4.99 KB
/
services.xml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="rmiller.phpspec_extension.executable_finder" class="Symfony\Component\Process\PhpExecutableFinder"/>
<service id="rmiller.phpspec_extension.executable_finder.caching" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\CachingExecutableFinder">
<argument type="service" id="rmiller.phpspec_extension.executable_finder"/>
</service>
<service id="rmiller.phpspec_extension.function_checker" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\CommandRunner\CliFunctionChecker">
<argument type="service" id="rmiller.phpspec_extension.executable_finder.caching"/>
</service>
<service id="rmiller.phpspec_extension.runner.pcntl" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\CommandRunner\PcntlCommandRunner">
<argument type="service" id="rmiller.phpspec_extension.function_checker"/>
</service>
<service id="rmiller.phpspec_extension.runner.passthru" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\CommandRunner\PassthruCommandRunner">
<argument type="service" id="rmiller.phpspec_extension.function_checker"/>
</service>
<service id="rmiller.phpspec_extension.desc_runner.pcntl" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\DescRunner\PlatformSpecificDescRunner">
<argument type="service" id="rmiller.phpspec_extension.runner.pcntl"/>
<argument type="service" id="rmiller.phpspec_extension.executable_finder.caching"/>
<argument>%phpspec_extension.path%</argument>
<argument>%phpspec_extension.config%</argument>
</service>
<service id="rmiller.phpspec_extension.desc_runner.passthru" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\DescRunner\PlatformSpecificDescRunner">
<argument type="service" id="rmiller.phpspec_extension.runner.passthru"/>
<argument type="service" id="rmiller.phpspec_extension.executable_finder.caching"/>
<argument>%phpspec_extension.path%</argument>
<argument>%phpspec_extension.config%</argument>
</service>
<service id="rmiller.phpspec_extension.desc_runner" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\DescRunner\CompositeDescRunner">
<argument type="collection">
<argument type="service" id="rmiller.phpspec_extension.desc_runner.pcntl"/>
<argument type="service" id="rmiller.phpspec_extension.desc_runner.passthru"/>
</argument>
</service>
<service id="rmiller.phpspec_extension.exemplify_runner.pcntl" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\ExemplifyRunner\PlatformSpecificExemplifyRunner">
<argument type="service" id="rmiller.phpspec_extension.runner.pcntl"/>
<argument type="service" id="rmiller.phpspec_extension.executable_finder.caching"/>
<argument>%phpspec_extension.path%</argument>
<argument>%phpspec_extension.config%</argument>
</service>
<service id="rmiller.phpspec_extension.exemplify_runner.passthru" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\ExemplifyRunner\PlatformSpecificExemplifyRunner">
<argument type="service" id="rmiller.phpspec_extension.runner.passthru"/>
<argument type="service" id="rmiller.phpspec_extension.executable_finder.caching"/>
<argument>%phpspec_extension.path%</argument>
<argument>%phpspec_extension.config%</argument>
</service>
<service id="rmiller.phpspec_extension.exemplify_runner" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Process\ExemplifyRunner\CompositeExemplifyRunner">
<argument type="collection">
<argument type="service" id="rmiller.phpspec_extension.exemplify_runner.pcntl"/>
<argument type="service" id="rmiller.phpspec_extension.exemplify_runner.passthru"/>
</argument>
</service>
<service id="rmiller.phpspec_extension.tester" class="RMiller\BehatSpec\Extension\PhpSpecExtension\Tester\PhpSpecTester">
<argument/>
<argument type="service" id="rmiller.phpspec_extension.desc_runner"/>
<argument type="service" id="cli.input"/>
<argument type="service" id="cli.output"/>
<tag name="tester.suite.wrapper" priority="-9999"/>
</service>
<service id="rmiller.phpspec_extension.missing_method_observer" class="RMiller\BehatSpec\Extension\PhpSpecExtension\ErrorObserver\MissingMethodErrorObserver">
<argument type="service" id="rmiller.phpspec_extension.exemplify_runner"/>
<tag name="rmiller.error_listener"/>
</service>
</services>
</container>