-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpca-config-all.php
226 lines (194 loc) · 9.56 KB
/
phpca-config-all.php
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
/*
COPYRIGHT DISCLAIMER:
--------------------
This file is a copy of a configuration file from original software package:
php-clean-architecture by Valeriy Chetkov.
It was copied and modified from
https://github.com/Chetkov/php-clean-architecture/blob/master/example.phpca-config.php
following the installation instructions provided in the "README.md".
License for php-clean-architecture is available at:
https://github.com/Chetkov/php-clean-architecture/blob/master/LICENSE
Also, the following example was extensively consulted for this configuration
https://github.com/Chetkov/php-clean-architecture-example-project/blob/master/phpca-config.php
*/
declare(strict_types=1);
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\EventManager;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Report\ComponentReportRenderingEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Report\ReportBuildingEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Report\ReportRenderingEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Report\UnitOfCodeReportRenderedEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Render\TwigToTemplateRendererInterfaceAdapter;
use Chetkov\PHPCleanArchitecture\Service\EventManagerInterface;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Analysis\AnalysisEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Analysis\ComponentAnalysisEventListener;
use Chetkov\PHPCleanArchitecture\Infrastructure\Event\Listener\Analysis\FileAnalyzedEventListener;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CompositeDependenciesFinder;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\CodeParsingDependenciesFinder;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ClassesCalledStaticallyParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ClassesCreatedThroughNewParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ClassesFromInstanceofConstructionParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\MethodAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ParamAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\PropertyAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ReturnAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\ThrowsAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\CodeParsing\Strategy\VarAnnotationsParsingStrategy;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\DependenciesFinderInterface;
use Chetkov\PHPCleanArchitecture\Service\Analysis\DependenciesFinder\ReflectionDependenciesFinder;
use Chetkov\PHPCleanArchitecture\Service\Report\DefaultReport\ReportRenderingService;
use Chetkov\PHPCleanArchitecture\Service\Report\ReportRenderingServiceInterface;
use Twig\Environment;
use Twig\Loader\FilesystemLoader;
return [
// Директория в которую будут складываться файлы отчета
'reports_dir' => __DIR__ . '/phpca-reports',
// Учет vendor пакетов (каждый подключенный пакет, за исключением перечисленных в excluded, будет представлен компонентом)
'vendor_based_components' => [
'enabled' => false,
'vendor_path' => __DIR__ . '/vendor',
],
// Общие для всех компонентов ограничения
'restrictions' => [
// Включение/отключение обнаружения нарушений принципа ацикличности зависимостей.
'check_acyclic_dependencies_principle' => true,
// Включение/отключение обнаружения нарушений принципа устойчивых зависимостей.
'check_stable_dependencies_principle' => true,
],
// Описание компонентов и их ограничений
'components' => [
// model
[
'name' => 'model',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Core/Model',
'namespace' => '\ExampleApp\Core\Model',
],
],
],
// input ports
[
'name' => 'input ports',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Core/Port/Input',
'namespace' => '\ExampleApp\Core\Port\Input',
],
],
],
// output ports (sec. adapt.)
[
'name' => 'output ports (sec. adapt.)',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Core/Port/Output',
'namespace' => '\ExampleApp\Core\Port\Output',
],
],
],
// output ports (presenters)
[
'name' => 'output ports (presenters)',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Core/Port/Presenter',
'namespace' => '\ExampleApp\Core\Port\Presenter',
],
],
],
// use cases
[
'name' => 'use cases',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Core/UseCase',
'namespace' => '\ExampleApp\Core\UseCase',
],
],
],
// controllers
[
'name' => 'controllers',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Infrastructure/Adapter/Web/Controller',
'namespace' => '\ExampleApp\Infrastructure\Adapter\Web\Controller',
],
],
],
// presenters
[
'name' => 'presenters',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Infrastructure/Adapter/Web/Presenter',
'namespace' => '\ExampleApp\Infrastructure\Adapter\Web\Presenter',
],
],
],
// secondary adapters
[
'name' => 'secondary adapters',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Infrastructure/Adapter',
'namespace' => '\ExampleApp\Infrastructure\Adapter',
],
],
'excluded' => [
__DIR__ . '/src/ExampleApp/Infrastructure/Adapter/Web',
],
],
// application
[
'is_analyze_enabled' => false,
'name' => 'application',
'roots' => [
[
'path' => __DIR__ . '/src/ExampleApp/Infrastructure/Application',
'namespace' => '\ExampleApp\Infrastructure\Application',
],
],
],
],
'factories' => [
//Фабрика, собирающая DependenciesFinder
'dependencies_finder' => static function (): DependenciesFinderInterface {
return new CompositeDependenciesFinder(...[
new ReflectionDependenciesFinder(),
new CodeParsingDependenciesFinder(...[
new ClassesCreatedThroughNewParsingStrategy(),
new ClassesCalledStaticallyParsingStrategy(),
new ClassesFromInstanceofConstructionParsingStrategy(),
new PropertyAnnotationsParsingStrategy(),
new MethodAnnotationsParsingStrategy(),
new ParamAnnotationsParsingStrategy(),
new ReturnAnnotationsParsingStrategy(),
new ThrowsAnnotationsParsingStrategy(),
new VarAnnotationsParsingStrategy(),
]),
]);
},
//Фабрика, собирающая сервис рендеринга отчетов
'report_rendering_service' => static function (EventManagerInterface $eventManager): ReportRenderingServiceInterface {
$templatesLoader = new FilesystemLoader(ReportRenderingService::templatesPath());
$twigRenderer = new Environment($templatesLoader);
$twigAdapter = new TwigToTemplateRendererInterfaceAdapter($twigRenderer);
return new ReportRenderingService($eventManager, $twigAdapter);
},
//Фабрика, собирающая и настраивающая EventManager
'event_manager' => static function (): EventManagerInterface {
return new EventManager([
new ReportBuildingEventListener(),
new AnalysisEventListener(),
new ComponentAnalysisEventListener(),
new FileAnalyzedEventListener(),
new ReportBuildingEventListener(),
new ReportRenderingEventListener(),
new ComponentReportRenderingEventListener(),
new UnitOfCodeReportRenderedEventListener(),
]);
}
],
];