123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?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,
- ],
- '@symfony/stimulus-bundle' => [
- 'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
- ],
- '@hotwired/stimulus' => [
- 'version' => '3.2.2',
- ],
- '@hotwired/turbo' => [
- 'version' => '8.0.13',
- ],
- 'datatables.net-bs5/css/dataTables.bootstrap5.min.css' => [
- 'version' => '2.3.2',
- 'type' => 'css',
- ],
- 'datatables.net-buttons-bs5/css/buttons.bootstrap5.min.css' => [
- 'version' => '3.2.4',
- 'type' => 'css',
- ],
- 'datatables.net-buttons-dt/css/buttons.dataTables.min.css' => [
- 'version' => '3.2.4',
- 'type' => 'css',
- ],
- 'datatables.net-dt/css/dataTables.dataTables.min.css' => [
- 'version' => '2.3.2',
- 'type' => 'css',
- ],
- 'datatables.net-columncontrol-bs5' => [
- 'version' => '1.0.7',
- ],
- 'datatables.net-columncontrol' => [
- 'version' => '1.0.7',
- ],
- 'datatables.net-columncontrol-bs5/css/columnControl.bootstrap5.min.css' => [
- 'version' => '1.0.7',
- 'type' => 'css',
- ],
- 'datatables.net-columncontrol-dt' => [
- 'version' => '1.0.7',
- ],
- 'datatables.net-columncontrol-dt/css/columnControl.dataTables.min.css' => [
- 'version' => '1.0.7',
- 'type' => 'css',
- ],
- 'datatables.net-buttons/js/buttons.colVis' => [
- 'version' => '3.2.4',
- ],
- 'datatables.net-buttons/js/buttons.html5' => [
- 'version' => '3.2.4',
- ],
- 'datatables.net-buttons/js/buttons.print' => [
- 'version' => '3.2.4',
- ],
- 'datatables.net-select-bs5/css/select.bootstrap5.min.css' => [
- 'version' => '3.0.1',
- 'type' => 'css',
- ],
- 'datatables.net-select-dt/css/select.dataTables.min.css' => [
- 'version' => '3.0.1',
- 'type' => 'css',
- ],
- 'datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css' => [
- 'version' => '3.0.5',
- 'type' => 'css',
- ],
- 'datatables.net-responsive-dt/css/responsive.dataTables.min.css' => [
- 'version' => '3.0.5',
- 'type' => 'css',
- ],
- 'pdfmake/build/vfs_fonts' => [
- 'version' => '0.2.20',
- ],
- 'jquery' => [
- 'version' => '3.7.1',
- ],
- 'datatables.net-bs5' => [
- 'version' => '2.3.2',
- ],
- 'datatables.net' => [
- 'version' => '2.3.2',
- ],
- 'datatables.net-dt' => [
- 'version' => '2.3.2',
- ],
- 'datatables.net-buttons' => [
- 'version' => '3.2.4',
- ],
- ];
|