-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp-sap.txt
38 lines (38 loc) · 1.06 KB
/
php-sap.txt
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
@startuml
digraph G {
node [shape=box];
compound=true;
splines=ortho;
subgraph cluster1 {
color=blue;
node [color=blue];
subgraph cluster11 {
label="PHP 7.x"
sapnwrfc7 [label="sapnwrfc by Gregor Kralik"];
}
subgraph cluster12 {
label="PHP 5.x"
sapnwrfc5 [label="sapnwrfc by Piers Harding"];
saprfc [label="saprfc by Eduard Koucky"];
}
}
subgraph cluster2 {
color=green;
node [color=green];
label="php-sap/interfaces"
subgraph cluster21 {
label="php-sap/common"
"php-sap/saprfc-koucky" -> saprfc [color=green];
"php-sap/saprfc-harding" -> sapnwrfc5 [color=green];
"php-sap/saprfc-kralik" -> sapnwrfc7 [color=green];
}
}
subgraph cluster3 {
color=red;
node [color=red];
label="your code";
yourcode [label="connect ➔ prepare ➔ invoke"];
}
yourcode -> "php-sap/saprfc-koucky" [lhead=cluster2 color=red];
}
@enduml