From de2048b41d8593c031437f22ef329a745ad29e2e Mon Sep 17 00:00:00 2001 From: "github-action[bot]" <> Date: Fri, 27 May 2022 09:28:57 +0000 Subject: [PATCH] Update Flex endpoint --- ...c9239e1c76e037f5b65446d09eba836ea147f.json | 272 +++++++++++++ index.json | 385 ++++++++++++------ symfony.webpack-encore-bundle.1.10.json | 6 +- 3 files changed, 530 insertions(+), 133 deletions(-) create mode 100644 archived/symfony.webpack-encore-bundle/642c9239e1c76e037f5b65446d09eba836ea147f.json diff --git a/archived/symfony.webpack-encore-bundle/642c9239e1c76e037f5b65446d09eba836ea147f.json b/archived/symfony.webpack-encore-bundle/642c9239e1c76e037f5b65446d09eba836ea147f.json new file mode 100644 index 00000000..b7d1ebab --- /dev/null +++ b/archived/symfony.webpack-encore-bundle/642c9239e1c76e037f5b65446d09eba836ea147f.json @@ -0,0 +1,272 @@ +{ + "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 yarn install", + "", + " * Start the development server: 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", + "", + " # Set to true to 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:", + " # pass \"frontend\" as the 3rg arg to the Twig functions", + " # {{ encore_entry_script_tags('entry1', null, 'frontend') }}", + "", + " # frontend: '%kernel.project_dir%/public/frontend/build'", + "", + " # 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: '%kernel.project_dir%/public/build/manifest.json'", + "", + "#when@prod:", + "# webpack_encore:", + "# # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes)", + "# # Available in version 1.2", + "# cache: true", + "", + "#when@test:", + "# webpack_encore:", + "# strict_mode: false", + "" + ], + "executable": false + }, + "package.json": { + "contents": [ + "{", + " \"devDependencies\": {", + " \"@hotwired/stimulus\": \"^3.0.0\",", + " \"@symfony/stimulus-bridge\": \"^3.0.0\",", + " \"@symfony/webpack-encore\": \"^2.0.0\",", + " \"core-js\": \"^3.0.0\",", + " \"regenerator-runtime\": \"^0.13.2\",", + " \"webpack-notifier\": \"^1.6.0\"", + " },", + " \"license\": \"UNLICENSED\",", + " \"private\": true,", + " \"scripts\": {", + " \"dev-server\": \"encore dev-server\",", + " \"dev\": \"encore dev\",", + " \"watch\": \"encore dev --watch\",", + " \"build\": \"encore production --progress\"", + " }", + "}", + "" + ], + "executable": false + }, + "webpack.config.js": { + "contents": [ + "const Encore = require('@symfony/webpack-encore');", + "", + "// Manually configure the runtime environment if not already configured yet by the \"encore\" command.", + "// It's useful when you use tools that rely on webpack.config.js file.", + "if (!Encore.isRuntimeEnvironmentConfigured()) {", + " Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');", + "}", + "", + "Encore", + " // directory where compiled assets will be stored", + " .setOutputPath('public/build/')", + " // public path used by the web server to access the output path", + " .setPublicPath('/build')", + " // only needed for CDN's or sub-directory deploy", + " //.setManifestKeyPrefix('build/')", + "", + " /*", + " * ENTRY CONFIG", + " *", + " * Each entry will result in one JavaScript file (e.g. app.js)", + " * and one CSS file (e.g. app.css) if your JavaScript imports CSS.", + " */", + " .addEntry('app', './assets/app.js')", + "", + " // enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)", + " .enableStimulusBridge('./assets/controllers.json')", + "", + " // When enabled, Webpack \"splits\" your files into smaller pieces for greater optimization.", + " .splitEntryChunks()", + "", + " // will require an extra script tag for runtime.js", + " // but, you probably want this, unless you're building a single-page app", + " .enableSingleRuntimeChunk()", + "", + " /*", + " * FEATURE CONFIG", + " *", + " * Enable & configure other features below. For a full", + " * list of features, see:", + " * https://symfony.com/doc/current/frontend.html#adding-more-features", + " */", + " .cleanupOutputBeforeBuild()", + " .enableBuildNotifications()", + " .enableSourceMaps(!Encore.isProduction())", + " // enables hashed filenames (e.g. app.abc123.css)", + " .enableVersioning(Encore.isProduction())", + "", + " .configureBabel((config) => {", + " config.plugins.push('@babel/plugin-proposal-class-properties');", + " })", + "", + " // enables @babel/preset-env polyfills", + " .configureBabelPresetEnv((config) => {", + " config.useBuiltIns = 'usage';", + " config.corejs = 3;", + " })", + "", + " // enables Sass/SCSS support", + " //.enableSassLoader()", + "", + " // uncomment if you use TypeScript", + " //.enableTypeScriptLoader()", + "", + " // uncomment if you use React", + " //.enableReactPreset()", + "", + " // uncomment to get integrity=\"...\" attributes on your script & link tags", + " // requires WebpackEncoreBundle 1.4 or higher", + " //.enableIntegrityHashes(Encore.isProduction())", + "", + " // uncomment if you're having problems with a jQuery plugin", + " //.autoProvidejQuery()", + ";", + "", + "module.exports = Encore.getWebpackConfig();", + "" + ], + "executable": false + } + }, + "ref": "642c9239e1c76e037f5b65446d09eba836ea147f" + } + } +} diff --git a/index.json b/index.json index 471f9c2d..75850a16 100644 --- a/index.json +++ b/index.json @@ -881,17 +881,18 @@ }, "versions": { "lts": "5.4", - "stable": "6.0", - "next": "6.1", - "previous": "5.3", - "dev": "6.1", - "dev-name": "6.1", + "stable": "6.1", + "next": "6.2", + "previous": "6.0", + "dev": "6.2", + "dev-name": "6.2", "splits": { "symfony/all-my-sms-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/amazon-mailer": [ "4.3", @@ -902,12 +903,14 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/amazon-sns-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/amazon-sqs-messenger": [ "5.1", @@ -915,7 +918,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/amqp-messenger": [ "5.1", @@ -923,7 +927,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/asset": [ "3.4", @@ -938,14 +943,16 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/beanstalkd-messenger": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/browser-kit": [ "3.4", @@ -960,7 +967,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/cache": [ "3.4", @@ -975,7 +983,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/class-loader": [ "3.4" @@ -984,7 +993,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/config": [ "3.4", @@ -999,7 +1009,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/console": [ "3.4", @@ -1014,13 +1025,15 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/crowdin-translation-provider": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/css-selector": [ "3.4", @@ -1035,7 +1048,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/debug": [ "3.4", @@ -1058,7 +1072,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/dependency-injection": [ "3.4", @@ -1073,14 +1088,16 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/discord-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/doctrine-bridge": [ "3.4", @@ -1095,7 +1112,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/doctrine-messenger": [ "5.1", @@ -1103,7 +1121,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/dom-crawler": [ "3.4", @@ -1118,7 +1137,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/dotenv": [ "3.4", @@ -1133,10 +1153,12 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/engagespot-notifier": [ - "6.1" + "6.1", + "6.2" ], "symfony/error-handler": [ "4.4", @@ -1146,14 +1168,16 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/esendex-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/event-dispatcher": [ "3.4", @@ -1168,12 +1192,14 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/expo-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/expression-language": [ "3.4", @@ -1188,19 +1214,22 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/fake-chat-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/fake-sms-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/filesystem": [ "3.4", @@ -1215,7 +1244,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/finder": [ "3.4", @@ -1230,7 +1260,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/firebase-notifier": [ "5.1", @@ -1238,7 +1269,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/form": [ "3.4", @@ -1253,10 +1285,12 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/forty-six-elks-notifier": [ - "6.1" + "6.1", + "6.2" ], "symfony/framework-bundle": [ "3.4", @@ -1271,7 +1305,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/free-mobile-notifier": [ "5.1", @@ -1279,26 +1314,30 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/gateway-api-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/gitter-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/google-chat-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/google-mailer": [ "4.3", @@ -1309,10 +1348,12 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/html-sanitizer": [ - "6.1" + "6.1", + "6.2" ], "symfony/http-client": [ "4.3", @@ -1323,7 +1364,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/http-foundation": [ "3.4", @@ -1338,7 +1380,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/http-kernel": [ "3.4", @@ -1353,7 +1396,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/inflector": [ "3.4", @@ -1373,7 +1417,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/intl": [ "3.4", @@ -1388,16 +1433,19 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/iqsms-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/kaz-info-teh-notifier": [ - "6.1" + "6.1", + "6.2" ], "symfony/ldap": [ "3.4", @@ -1412,20 +1460,23 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/light-sms-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/linked-in-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/lock": [ "3.4", @@ -1440,19 +1491,22 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/loco-translation-provider": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/lokalise-translation-provider": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mailchimp-mailer": [ "4.3", @@ -1463,7 +1517,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mailer": [ "4.3", @@ -1474,7 +1529,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mailgun-mailer": [ "4.3", @@ -1485,19 +1541,22 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mailjet-mailer": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mailjet-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mattermost-notifier": [ "5.1", @@ -1505,24 +1564,28 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mercure-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/message-bird-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/message-media-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/messenger": [ "4.1", @@ -1535,13 +1598,15 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/microsoft-teams-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mime": [ "4.3", @@ -1552,14 +1617,16 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/mobyt-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/monolog-bridge": [ "3.4", @@ -1574,7 +1641,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/nexmo-notifier": [ "5.0", @@ -1590,23 +1658,27 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/octopush-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/oh-my-smtp-mailer": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/one-signal-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/options-resolver": [ "3.4", @@ -1621,10 +1693,12 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/orange-sms-notifier": [ - "6.1" + "6.1", + "6.2" ], "symfony/ovh-cloud-notifier": [ "5.1", @@ -1632,13 +1706,15 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/password-hasher": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/postmark-mailer": [ "4.3", @@ -1649,7 +1725,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/process": [ "3.4", @@ -1664,7 +1741,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/property-access": [ "3.4", @@ -1679,7 +1757,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/property-info": [ "3.4", @@ -1694,7 +1773,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/proxy-manager-bridge": [ "3.4", @@ -1709,14 +1789,16 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/rate-limiter": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/redis-messenger": [ "5.1", @@ -1724,7 +1806,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/rocket-chat-notifier": [ "5.1", @@ -1732,7 +1815,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/routing": [ "3.4", @@ -1747,13 +1831,15 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/runtime": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/security": [ "3.4", @@ -1768,7 +1854,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/security-bundle": [ "3.4", @@ -1783,7 +1870,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/security-core": [ "3.4", @@ -1798,7 +1886,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/security-csrf": [ "3.4", @@ -1813,7 +1902,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/security-guard": [ "3.4", @@ -1841,17 +1931,20 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/semaphore": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sendberry-notifier": [ - "6.1" + "6.1", + "6.2" ], "symfony/sendgrid-mailer": [ "4.3", @@ -1862,21 +1955,24 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sendinblue-mailer": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sendinblue-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/serializer": [ "3.4", @@ -1891,7 +1987,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sinch-notifier": [ "5.1", @@ -1899,7 +1996,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/slack-notifier": [ "5.0", @@ -1908,36 +2006,42 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sms-biuras-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/sms77-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/smsapi-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/smsc-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/spot-hit-notifier": [ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/stopwatch": [ "3.4", @@ -1952,7 +2056,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/string": [ "5.0", @@ -1961,7 +2066,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/telegram-notifier": [ "5.0", @@ -1970,12 +2076,14 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/telnyx-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/templating": [ "3.4", @@ -1990,7 +2098,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/translation": [ "3.4", @@ -2005,12 +2114,14 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/turbo-sms-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/twig-bridge": [ "3.4", @@ -2025,7 +2136,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/twig-bundle": [ "3.4", @@ -2040,7 +2152,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/twilio-notifier": [ "5.0", @@ -2049,7 +2162,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/uid": [ "5.1", @@ -2057,7 +2171,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/validator": [ "3.4", @@ -2072,7 +2187,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/var-dumper": [ "3.4", @@ -2087,7 +2203,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/var-exporter": [ "4.2", @@ -2099,12 +2216,14 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/vonage-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/web-link": [ "3.4", @@ -2119,7 +2238,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/web-profiler-bundle": [ "3.4", @@ -2134,7 +2254,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/web-server-bundle": [ "3.4", @@ -2157,7 +2278,8 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/yaml": [ "3.4", @@ -2172,19 +2294,22 @@ "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/yunpian-notifier": [ "5.4", "6.0", - "6.1" + "6.1", + "6.2" ], "symfony/zulip-notifier": [ "5.2", "5.3", "5.4", "6.0", - "6.1" + "6.1", + "6.2" ] } }, diff --git a/symfony.webpack-encore-bundle.1.10.json b/symfony.webpack-encore-bundle.1.10.json index d90a356c..b7d1ebab 100644 --- a/symfony.webpack-encore-bundle.1.10.json +++ b/symfony.webpack-encore-bundle.1.10.json @@ -129,8 +129,8 @@ " # 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", + " # Set to true to 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:", @@ -266,7 +266,7 @@ "executable": false } }, - "ref": "91f4d29f5ebbd2fcccc71ca55a17d14a17b308e8" + "ref": "642c9239e1c76e037f5b65446d09eba836ea147f" } } }