hydra-sql/.cache/composer/repo/flex/symfony-recipes-flex-main-s...

1 line
8.8 KiB
JSON
Raw Normal View History

{"body":{"manifests":{"symfony\/webpack-encore-bundle":{"manifest":{"bundles":{"Symfony\\WebpackEncoreBundle\\WebpackEncoreBundle":["all"]},"copy-from-recipe":{"assets\/":"assets\/","config\/":"%CONFIG_DIR%\/","package.json":"package.json","webpack.config.js":"webpack.config.js"},"gitignore":["\/node_modules\/","\/%PUBLIC_DIR%\/build\/","npm-debug.log","yarn-error.log"],"conflict":{"symfony\/framework-bundle":"<5.4"},"post-install-output":[" * Install Yarn and run <fg=green>yarn install<\/>",""," * Start the development server: <fg=green>yarn encore dev-server<\/>"]},"files":{"assets\/app.js":{"contents":["\/*"," * Welcome to your app's main JavaScript file!"," *"," * We recommend including the built version of this JavaScript file"," * (and its CSS file) in your base layout (base.html.twig)."," *\/","","\/\/ any CSS you import will output into a single css file (app.css in this case)","import '.\/styles\/app.css';","","\/\/ start the Stimulus application","import '.\/bootstrap';",""],"executable":false},"assets\/bootstrap.js":{"contents":["import { startStimulusApp } from '@symfony\/stimulus-bridge';","","\/\/ Registers Stimulus controllers from controllers.json and in the controllers\/ directory","export const app = startStimulusApp(require.context("," '@symfony\/stimulus-bridge\/lazy-controller-loader!.\/controllers',"," true,"," \/\\.[jt]sx?$\/","));","","\/\/ register any custom, 3rd party controllers here","\/\/ app.register('some_controller_name', SomeImportedController);",""],"executable":false},"assets\/controllers.json":{"contents":["{"," \"controllers\": [],"," \"entrypoints\": []","}",""],"executable":false},"assets\/controllers\/hello_controller.js":{"contents":["import { Controller } from '@hotwired\/stimulus';","","\/*"," * This is an example Stimulus controller!"," *"," * Any element with a data-controller=\"hello\" attribute will cause"," * this controller to be executed. The name \"hello\" comes from the filename:"," * hello_controller.js -> \"hello\""," *"," * Delete this file or adapt it for your use!"," *\/","export default class extends Controller {"," connect() {"," this.element.textContent = 'Hello Stimulus! Edit me in assets\/controllers\/hello_controller.js';"," }","}",""],"executable":false},"assets\/styles\/app.css":{"contents":["body {"," background-color: lightgray;","}",""],"executable":false},"config\/packages\/webpack_encore.yaml":{"contents":["webpack_encore:"," # The path where Encore is building the assets - i.e. Encore.setOutputPath()"," output_path: '%kernel.project_dir%\/public\/build'"," # If multiple builds are defined (as shown below), you can disable the default build:"," # output_path: false",""," # Set attributes that will be rendered on all script and link tags"," script_attributes:"," defer: true"," # Uncomment (also under link_attributes) if using Turbo Drive"," # https:\/\/turbo.hotwired.dev\/handbook\/drive#reloading-when-assets-change"," # 'data-turbo-track': reload"," # link_attributes:"," # Uncomment if using Turbo Drive"," # 'data-turbo-track': reload",""," # If using Encore.enableIntegrityHashes() and need the crossorigin attribute (default: false, or use 'anonymous' or 'use-credentials')"," # crossorigin: 'anonymous'",""," # Preload all rendered script and link tags automatically via the HTTP\/2 Link header"," # preload: true",""," # Throw an exception if the entrypoints.json file is missing or an entry is missing from the data"," # strict_mode: false",""," # If you have multiple builds:"," # builds:"," # frontend: '%kernel.project_dir%\/public\/frontend\/build'",""," # pass the build name as the 3rd argument to the Twig functions"," # {{ encore_entry_script_tags('entry1', null, 'frontend') }}",""," # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes)"," # Put in config\/packages\/prod\/webpack_encore.yaml"," # cache: true","","framework:"," assets:"," json_manifest_path: '%ke