-
Notifications
You must be signed in to change notification settings - Fork 1
/
importmap.php
154 lines (153 loc) · 4 KB
/
importmap.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
<?php
/**
* Returns the importmap for this application.
*
* - "path" is a path inside the asset mapper system. Use the
* "debug:asset-map" command to see the full list of paths.
*
* - "entrypoint" (JavaScript only) set to true for any module that will
* be used as an "entrypoint" (and passed to the importmap() Twig function).
*
* The "importmap:require" command can be used to add new entries to this file.
*/
return [
'app' => [
'path' => './assets/app.js',
'entrypoint' => true,
],
'@hotwired/stimulus' => [
'version' => '3.2.2',
],
'bootstrap' => [
'version' => '5.3.3',
],
'@popperjs/core' => [
'version' => '2.11.8',
],
'bootstrap/dist/css/bootstrap.min.css' => [
'version' => '5.3.3',
'type' => 'css',
],
'@symfony/stimulus-bundle' => [
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
],
'twig' => [
'version' => '1.17.1',
],
'locutus/php/strings/sprintf' => [
'version' => '2.0.16',
],
'locutus/php/strings/vsprintf' => [
'version' => '2.0.16',
],
'locutus/php/math/round' => [
'version' => '2.0.16',
],
'locutus/php/math/max' => [
'version' => '2.0.16',
],
'locutus/php/math/min' => [
'version' => '2.0.16',
],
'locutus/php/strings/strip_tags' => [
'version' => '2.0.16',
],
'locutus/php/datetime/strtotime' => [
'version' => '2.0.16',
],
'locutus/php/datetime/date' => [
'version' => '2.0.16',
],
'locutus/php/var/boolval' => [
'version' => '2.0.16',
],
'axios' => [
'version' => '1.6.7',
],
'fos-routing' => [
'version' => '0.0.6',
],
'perfect-scrollbar' => [
'version' => '1.5.5',
],
'perfect-scrollbar/css/perfect-scrollbar.min.css' => [
'version' => '1.5.5',
'type' => 'css',
],
'datatables.net-plugins/i18n/en-GB.mjs' => [
'version' => '2.0.8',
],
'datatables.net-bs5' => [
'version' => '2.1.3',
],
'jquery' => [
'version' => '3.7.1',
],
'datatables.net' => [
'version' => '2.1.3',
],
'datatables.net-bs5/css/dataTables.bootstrap5.min.css' => [
'version' => '2.1.3',
'type' => 'css',
],
'datatables.net-buttons-bs5' => [
'version' => '3.1.1',
],
'datatables.net-buttons' => [
'version' => '3.1.1',
],
'datatables.net-buttons-bs5/css/buttons.bootstrap5.min.css' => [
'version' => '3.1.1',
'type' => 'css',
],
'datatables.net-responsive-bs5' => [
'version' => '3.0.2',
],
'datatables.net-responsive' => [
'version' => '3.0.2',
],
'datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css' => [
'version' => '3.0.2',
'type' => 'css',
],
'datatables.net-scroller-bs5' => [
'version' => '2.4.3',
],
'datatables.net-scroller' => [
'version' => '2.4.3',
],
'datatables.net-scroller-bs5/css/scroller.bootstrap5.min.css' => [
'version' => '2.4.3',
'type' => 'css',
],
'datatables.net-searchpanes-bs5' => [
'version' => '2.3.0',
],
'datatables.net-searchpanes' => [
'version' => '2.3.0',
],
'datatables.net-searchpanes-bs5/css/searchPanes.bootstrap5.min.css' => [
'version' => '2.3.0',
'type' => 'css',
],
'datatables.net-searchbuilder-bs5' => [
'version' => '1.7.0',
],
'datatables.net-searchbuilder' => [
'version' => '1.7.0',
],
'datatables.net-searchbuilder-bs5/css/searchBuilder.bootstrap5.min.css' => [
'version' => '1.7.0',
'type' => 'css',
],
'datatables.net-select-bs5' => [
'version' => '2.0.4',
],
'datatables.net-select' => [
'version' => '2.0.4',
],
'datatables.net-select-bs5/css/select.bootstrap5.min.css' => [
'version' => '2.0.4',
'type' => 'css',
],
];