importmap.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. /**
  3. * Returns the importmap for this application.
  4. *
  5. * - "path" is a path inside the asset mapper system. Use the
  6. * "debug:asset-map" command to see the full list of paths.
  7. *
  8. * - "entrypoint" (JavaScript only) set to true for any module that will
  9. * be used as an "entrypoint" (and passed to the importmap() Twig function).
  10. *
  11. * The "importmap:require" command can be used to add new entries to this file.
  12. */
  13. return [
  14. 'app' => [
  15. 'path' => './assets/app.js',
  16. 'entrypoint' => true,
  17. ],
  18. '@hotwired/stimulus' => [
  19. 'version' => '3.2.2',
  20. ],
  21. '@symfony/stimulus-bundle' => [
  22. 'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
  23. ],
  24. '@hotwired/turbo' => [
  25. 'version' => '7.3.0',
  26. ],
  27. 'datatables.net-bs5' => [
  28. 'version' => '2.3.2',
  29. ],
  30. 'jquery' => [
  31. 'version' => '3.7.1',
  32. ],
  33. 'datatables.net' => [
  34. 'version' => '2.3.2',
  35. ],
  36. 'datatables.net-bs5/css/dataTables.bootstrap5.min.css' => [
  37. 'version' => '2.3.2',
  38. 'type' => 'css',
  39. ],
  40. 'datatables.net-buttons' => [
  41. 'version' => '3.2.4',
  42. ],
  43. 'datatables.net-buttons-bs5' => [
  44. 'version' => '3.2.4',
  45. ],
  46. 'datatables.net-buttons-bs5/css/buttons.bootstrap5.min.css' => [
  47. 'version' => '3.2.4',
  48. 'type' => 'css',
  49. ],
  50. 'datatables.net-buttons-dt' => [
  51. 'version' => '3.2.4',
  52. ],
  53. 'datatables.net-dt' => [
  54. 'version' => '2.3.2',
  55. ],
  56. 'datatables.net-buttons-dt/css/buttons.dataTables.min.css' => [
  57. 'version' => '3.2.4',
  58. 'type' => 'css',
  59. ],
  60. 'datatables.net-dt/css/dataTables.dataTables.min.css' => [
  61. 'version' => '2.3.2',
  62. 'type' => 'css',
  63. ],
  64. 'datatables.net-columncontrol-bs5' => [
  65. 'version' => '1.0.7',
  66. ],
  67. 'datatables.net-columncontrol' => [
  68. 'version' => '1.0.7',
  69. ],
  70. 'datatables.net-columncontrol-bs5/css/columnControl.bootstrap5.min.css' => [
  71. 'version' => '1.0.7',
  72. 'type' => 'css',
  73. ],
  74. 'datatables.net-columncontrol-dt' => [
  75. 'version' => '1.0.7',
  76. ],
  77. 'datatables.net-columncontrol-dt/css/columnControl.dataTables.min.css' => [
  78. 'version' => '1.0.7',
  79. 'type' => 'css',
  80. ],
  81. 'datatables.net-buttons/js/buttons.colVis' => [
  82. 'version' => '3.2.4',
  83. ],
  84. 'datatables.net-buttons/js/buttons.html5' => [
  85. 'version' => '3.2.4',
  86. ],
  87. 'datatables.net-buttons/js/buttons.print' => [
  88. 'version' => '3.2.4',
  89. ],
  90. 'datatables.net-select-bs5' => [
  91. 'version' => '3.0.1',
  92. ],
  93. 'datatables.net-select' => [
  94. 'version' => '3.0.1',
  95. ],
  96. 'datatables.net-select-bs5/css/select.bootstrap5.min.css' => [
  97. 'version' => '3.0.1',
  98. 'type' => 'css',
  99. ],
  100. 'datatables.net-select-dt' => [
  101. 'version' => '3.0.1',
  102. ],
  103. 'datatables.net-select-dt/css/select.dataTables.min.css' => [
  104. 'version' => '3.0.1',
  105. 'type' => 'css',
  106. ],
  107. 'datatables.net-responsive-bs5' => [
  108. 'version' => '3.0.5',
  109. ],
  110. 'datatables.net-responsive' => [
  111. 'version' => '3.0.5',
  112. ],
  113. 'datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css' => [
  114. 'version' => '3.0.5',
  115. 'type' => 'css',
  116. ],
  117. 'datatables.net-responsive-dt' => [
  118. 'version' => '3.0.5',
  119. ],
  120. 'datatables.net-responsive-dt/css/responsive.dataTables.min.css' => [
  121. 'version' => '3.0.5',
  122. 'type' => 'css',
  123. ],
  124. 'jszip' => [
  125. 'version' => '3.10.1',
  126. ],
  127. 'pdfmake' => [
  128. 'version' => '0.2.20',
  129. ],
  130. 'pdfmake/build/vfs_fonts' => [
  131. 'version' => '0.2.20',
  132. ],
  133. ];