-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeptrac.yaml
83 lines (83 loc) · 1.54 KB
/
deptrac.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
parameters:
paths:
- ./app
- ./src
exclude_files:
- '#.*test.*#'
- '#.*Factory\.php$#'
layers:
- name: Controller
collectors:
- type: className
regex: .*App\\Http\\*\\Controllers\\.*
- name: Action
collectors:
- type: className
regex: .*Actions\\.*
- name: ViewModel
collectors:
- type: className
regex: .*ViewModels\\.*
- name: Job
collectors:
- type: className
regex: .*Jobs\\.*
- name: Event
collectors:
- type: className
regex: .*Events\\.*
- name: Builder
collectors:
- type: className
regex: .*Builders\\.*
- name: Model
collectors:
- type: className
regex: .*\\Models\\.*
- name: DTO
collectors:
- type: className
regex: .*DataTransferObjects\\.*
- name: ValueObject
collectors:
- type: className
regex: .*ValueObjects\\.*
ruleset:
Controller:
- Action
- ViewModel
- Model
- DTO
- ValueObject
Action:
- Event
- Model
- DTO
- Builder
- ValueObject
ViewModel:
- Model
- DTO
- Builder
- ValueObject
Job:
- Action
- Model
- DTO
Event:
- Model
Builder:
- Model
- DTO
- ValueObject
Model:
- Builder
- Model
- DTO
- ValueObject
DTO:
- Model
- DTO
- ValueObject
ValueObject:
- ValueObject