forked from mtarld/apip-ddd
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeptrac_bc.yaml
More file actions
33 lines (28 loc) · 920 Bytes
/
deptrac_bc.yaml
File metadata and controls
33 lines (28 loc) · 920 Bytes
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
parameters:
paths:
- ./src
layers:
- name: BookStore
collectors:
- type: directory
regex: src/BookStore/.*
- name: Subscription
collectors:
- type: directory
regex: src/Subscription/.*
- name: Shared
collectors:
- type: directory
regex: src/Shared/.*
- name: Vendors
collectors:
- { type: className, regex: ^ApiPlatform\\ }
- { type: className, regex: ^Symfony\\ }
- { type: className, regex: ^Doctrine\\ }
- { type: className, regex: ^Webmozart\\ }
- { type: className, regex: ^Ecotone\\ }
- { type: className, regex: ^Prooph\\ }
ruleset:
BookStore: [ Shared, Vendors ]
Subscription: [ Shared, Vendors ]
Shared: [ Vendors ]