🇺🇸United States @SoCalErich

Account created on 17 May 2012, about 12 years ago
#

Recent comments

🇺🇸United States SoCalErich

Getting both of these errors on Drupal 10.2.3 with IMCE 3.0.12. Patch #4 would not apply for me.

🇺🇸United States SoCalErich

Did you remember to replace "YOUR_THEME" with the actual name of your theme in the function declaration?

🇺🇸United States SoCalErich

I'm not sure if there is a better way to do this, but what ended up working for us was to add a preprocess function to our .theme file like this:

function YOUR_THEME_preprocess_views_exposed_form(&$variables) {
  if(isset($variables['form']['#view']) && $variables['form']['#view']->total_rows) {
    $variables['total_rows'] = $variables['form']['#view']->total_rows;
  }
}
🇺🇸United States SoCalErich

I am in need of this also. I have Bulk Operations setup for my Content View in D10, but when I go to bulk edit fields for a node, the "View Mode" is not available to edit.

🇺🇸United States SoCalErich

Hey, sorry, this was so long ago that I don't remember what actually worked. I know I was trying so many different things, and honestly, I don't even know which thing actually made it work. I THINK in my case, I removed the AWS SDK completely and then tried again. I might be wrong, but I think that was the blocker for me.

🇺🇸United States SoCalErich

I am on 10.1.2 and I have this same issue. I have some exposed filters that are taxonomies. If I add or edit a content type that has an entity reference to one of these taxonomies, the taxonomy does not show up in my exposed filter as a choice unless I clear the cache. I just applied the patch in #70, but it did not fix the issue. Do I need to apply the patch from #70 AND #63?

🇺🇸United States SoCalErich

So I used the patch from this issue and everything seems to work now.

https://www.drupal.org/project/hierarchical_term_formatter/issues/3287889 📌 Automated Drupal 10 compatibility fixes Fixed

🇺🇸United States SoCalErich

I was able to use the Drupal Lenient plugin to allow downloading the dev version of the plugin with Composer. I then used your patch to patch the .yml file to allow for Drupal 10. I was successfully able to instll the module, but now when I go to actually use it on a field of one of my content types, I get this error:

Error: Call to undefined function render() in template_preprocess_hierarchical_term_formatter() (line 26 of modules/contrib/hierarchical_term_formatter/hierarchical_term_formatter.theme.inc).
call_user_func_array('template_preprocess_hierarchical_term_formatter', Array) (Line: 285)
Drupal\Core\Theme\ThemeManager->render('hierarchical_term_formatter', Array) (Line: 433)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204)
Drupal\Core\Render\Renderer->render(Array) (Line: 477)
Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 79)
__TwigTemplate_39dbe5e99910153f6ec373ccd2955309->doDisplay(Array, Array) (Line: 394)
Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367)
Twig\Template->display(Array) (Line: 379)
Twig\Template->render(Array, Array) (Line: 40)
Twig\TemplateWrapper->render(Array) (Line: 53)
twig_render_template('themes/custom/hercules/templates/field--node--resource-library.html.twig', Array) (Line: 372)
Drupal\Core\Theme\ThemeManager->render('field', Array) (Line: 433)
Drupal\Core\Render\Renderer->doRender(Array) (Line: 446)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204)
Drupal\Core\Render\Renderer->render(Array) (Line: 477)
Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 111)
__TwigTemplate_986735d7250b7b5a2293d9419a4d746f->doDisplay(Array, Array) (Line: 394)
Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367)
Twig\Template->display(Array) (Line: 379)
Twig\Template->render(Array, Array) (Line: 40)
Twig\TemplateWrapper->render(Array) (Line: 53)
twig_render_template('themes/contrib/bootstrap/templates/node/node.html.twig', Array) (Line: 372)
Drupal\Core\Theme\ThemeManager->render('node', Array) (Line: 433)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204)
Drupal\Core\Render\Renderer->render(Array, ) (Line: 238)
Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}() (Line: 580)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 239)
Drupal\Core\Render\MainContent\HtmlRenderer->prepare(Array, Object, Object) (Line: 128)
Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object, Object) (Line: 90)
Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object, 'kernel.view', Object)
call_user_func(Array, Object, 'kernel.view', Object) (Line: 111)
Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.view') (Line: 168)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 74)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 692)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)
🇺🇸United States SoCalErich

Thanks for addressing this! I was successfully able to patch the dev version of the module and it did add the D10 version to info.yml, but I won't be able to use this until it gets merged into an update.

🇺🇸United States SoCalErich

Just in case anyone else ends up having this issue, I followed the steps above and this was my JavaScript that ended up working as far as the override goes. One note is that the "header_height" variable is dependent on what your projects actual header height is, so you may need to adjust that.

(function ($, Drupal) {
  Drupal.AjaxCommands.prototype.scrollTop = function (ajax, response) {
    var offset = $(response.selector).offset();
    var scrollTarget = response.selector;

    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
      scrollTarget = $(scrollTarget).parent();
    }

    var header_height = 200;

    if (offset.top - header_height < $(scrollTarget).scrollTop()) {
      $(scrollTarget).animate({ scrollTop: offset.top - header_height }, 500);
    }
  };
})(jQuery, Drupal);
🇺🇸United States SoCalErich

There are actually a few examples on that page "Scrollable table with horizontal stripes", "Compact scrollable table with horizontal stripes", and "Sortable striped table with various content types". Although it's not required that the table be scrollable, sortable or anything else for that matter. At the end of the day you just add the class "usa-table--striped" to the main table tag and you get stripes. There are even USWDS settings to specify the colors to use for the stripes for both normal stripes and stripes for the column when sorted.

Right now I will need to have my client decide if ALL tables will either be striped or not and handle the stripes completely in custom CSS. The content editor would not have a way to specify if the table should be striped without clicking the Source button in CkEditor and manually adding the "usa-table--striped" class to the table. Not a big deal, but hate having to tell them to edit source ever.

Anyway, thought it would be cool to add that. I have no idea how hard that would be.

🇺🇸United States SoCalErich

This issue is with Drupal 10.1.1.

🇺🇸United States SoCalErich

OK, I just figured out what I did to remedy this at least for me. I went to the server in question and went to Appearance > Settings > Gin and under "Navigation (Drupal Toolbar)", I switched the setting to "Legacy, Classic Drupal Toolbar" and saved it but then switched it right back to "Horizontal, Modern Toolbar" after saving and for some reason that got rid of the problem.

🇺🇸United States SoCalErich

Also happening for me after 10.1.1. What's weird is it was happening for me locally and then somehow stopped, but I don't know what I did to make it stop. When I moved the code to the dev server, it started happening on dev and it wont go away even after clearing cache, turning off aggregation, etc.

🇺🇸United States SoCalErich

I was successfully able to update core to 10.1.1 without issue. THANKS!

🇺🇸United States SoCalErich

OK so I did the dry run and got what you got, but when I go the forum post about the AWS SDK and apply the patch, the patch fails to apply. Am I doing this wrong? I added this to my patches section:

"drupal/core": {
    "3368790 - guzzlehttp/promises 2.0 blocking update to 10.1 due to AWS SDK": "https://www.drupal.org/files/issues/2023-06-22/3368790-9.patch"
},

then if I run lando composer install, I get:

Removing package drupal/core so that it can be re-installed and re-patched.
  - Removing drupal/core (10.0.10)
Deleting /app/src/web/core - deleted
Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
Gathering patches for root package.
Gathering patches for dependencies. This might take a minute.
  - Installing drupal/core (10.0.10): Extracting archive
"drupal/core-recommended 10.1.0 requires guzzlehttp/promises ~2.0.0 -> found guzzlehttp/promises[2.0.0, 2.0.x-dev] but these were not loaded, likely be                                       
  - Applying patches for drupal/core
    https://www.drupal.org/files/issues/2023-06-22/3368790-9.patch (3368790 - guzzlehttp/promises 2.0 blocking update to 10.1 due to AWS SDK)
   Could not apply patch! Skipping. The error was: Cannot apply patch https://www.drupal.org/files/issues/2023-06-22/3368790-9.patch
🇺🇸United States SoCalErich

Well I just deleted and recreated my Lando containers and deleted my vendor directory and core directory and ran lando composer update "drupal/core-*" --with-all-dependencies and this time it worked and actually updated core to 10.0.10. I'm not entirely sure why, but I guess it's fine now. Thanks for all your help!

🇺🇸United States SoCalErich

I thought that seemed weird especially since I did why-not drupal/core 10.1.0. So what does this mean? I'm not understanding why that is there. Obviously, I have 10.0.9 installed. Why is it telling me drupal/core-recommended 10.0.9 requires drupal/core (10.0.9)? I'm trying to figure out why I can't install 10.1.0.

🇺🇸United States SoCalErich

OK just ran:
lando composer why-not drupal/core 10.1.0

and got:

drupal/core-recommended    10.0.9   requires         drupal/core (10.0.9)                                    
drupal/core                10.1.0   requires         symfony/console (^6.3)                                  
drupal/recommended-project dev-main does not require symfony/console (but v6.2.12 is installed)              
drupal/core                10.1.0   requires         symfony/dependency-injection (^6.3)                     
drupal/recommended-project dev-main does not require symfony/dependency-injection (but v6.2.12 is installed) 
drupal/core                10.1.0   requires         symfony/event-dispatcher (^6.3)                         
drupal/recommended-project dev-main does not require symfony/event-dispatcher (but v6.2.8 is installed)      
drupal/core                10.1.0   requires         symfony/http-foundation (^6.3)                          
drupal/recommended-project dev-main does not require symfony/http-foundation (but v6.2.12 is installed)      
drupal/core                10.1.0   requires         symfony/http-kernel (^6.3)                              
drupal/recommended-project dev-main does not require symfony/http-kernel (but v6.2.12 is installed)          
drupal/core                10.1.0   requires         symfony/mime (^6.3)                                     
drupal/recommended-project dev-main does not require symfony/mime (but v6.2.10 is installed)                 
drupal/core                10.1.0   requires         symfony/routing (^6.3)                                  
drupal/recommended-project dev-main does not require symfony/routing (but v6.2.12 is installed)              
drupal/core                10.1.0   requires         symfony/serializer (^6.3)                               
drupal/recommended-project dev-main does not require symfony/serializer (but v6.2.12 is installed)           
drupal/core                10.1.0   requires         symfony/validator (^6.3)                                
drupal/recommended-project dev-main does not require symfony/validator (but v6.2.12 is installed)            
drupal/core                10.1.0   requires         symfony/process (^6.3)                                  
drupal/recommended-project dev-main does not require symfony/process (but v6.2.11 is installed)              
drupal/core                10.1.0   requires         symfony/yaml (^6.3)                                     
drupal/recommended-project dev-main does not require symfony/yaml (but v6.2.10 is installed)                 
drupal/core                10.1.0   requires         doctrine/annotations (^1.14)                            
drupal/recommended-project dev-main does not require doctrine/annotations (but 1.13.3 is installed) 
🇺🇸United States SoCalErich

I'm using zsh. I am also using Lando. I did
lando composer why-not "drupal/core:10.1.0"
and still got
Not enough arguments (missing: "version").

🇺🇸United States SoCalErich

When I run "composer why-not drupal/core:10.1.0" I get this error:

[Symfony\Component\Console\Exception\RuntimeException]
Not enough arguments (missing: "version").

I also looked at that post about AWS and attempted to apply the patch from that post but I got a "Could not apply patch".

🇺🇸United States SoCalErich

composer.lock was way too long to paste here. I attached as composer.lock.txt since I could not upload a .lock file.

🇺🇸United States SoCalErich

The command I gave
composer update "drupal/core-*" --with-all-dependencies

The result:

Gathering patches for root package.
Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Updating dependencies
Lock file operations: 0 installs, 2 updates, 0 removals
  - Upgrading drupal/core-composer-scaffold (10.0.9 => 10.1.0)
  - Upgrading drupal/core-project-message (10.0.9 => 10.1.0)
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating autoload files
54 packages you are using are looking for funding.
Use the `composer fund` command to find out more!

composer.json:

{
    "name": "drupal/recommended-project",
    "description": "Project template for Drupal projects with a relocated document root",
    "type": "project",
    "license": "GPL-2.0-or-later",
    "homepage": "https://www.drupal.org/project/drupal",
    "support": {
        "docs": "https://www.drupal.org/docs/user_guide/en/index.html",
        "chat": "https://www.drupal.org/node/314178"
    },
    "repositories": [
        {
            "type": "composer",
            "url": "https://packages.drupal.org/8"
        },
        {
            "type": "package",
            "package": {
                "name": "jackmoore/colorbox",
                "version": "1.6.4",
                "type": "drupal-library",
                "license": "MIT",
                "dist": {
                    "url": "https://github.com/jackmoore/colorbox/archive/1.6.4.zip",
                    "type": "zip"
                }
            }
        }
    ],
    "require": {
        "aptoma/twig-markdown": "^3.4",
        "composer/installers": "^2.0",
        "cweagans/composer-patches": "^1.7",
        "drupal/asset_injector": "^2.16",
        "drupal/auto_entitylabel": "^3.0",
        "drupal/backup_migrate": "^5.0",
        "drupal/better_exposed_filters": "^6.0",
        "drupal/block_field": "^1.0@RC",
        "drupal/cloudfront_edge_caching": "^2.1",
        "drupal/colorbox": "^2.0",
        "drupal/colorbox_inline": "^2.0",
        "drupal/commerce": "^2.34",
        "drupal/commerce_cart_redirection": "^3.2",
        "drupal/commerce_email": "^1.0",
        "drupal/commerce_shipping": "^2.6",
        "drupal/commerce_stock": "1.x-dev@dev",
        "drupal/conditional_fields": "^4.0@alpha",
        "drupal/config_split": "^1.9",
        "drupal/contact_emails": "^1.21",
        "drupal/core-composer-scaffold": "^10.0",
        "drupal/core-project-message": "^10.0",
        "drupal/core-recommended": "^10.0",
        "drupal/devel": "^5.1",
        "drupal/draggableviews": "^2.1",
        "drupal/easy_breadcrumb": "^2.0",
        "drupal/entity_browser": "^2.9",
        "drupal/facets": "^2.0",
        "drupal/fancy_file_delete": "^2.0",
        "drupal/field_group": "^3.4",
        "drupal/focal_point": "^2.0@alpha",
        "drupal/gin": "^3.0@RC",
        "drupal/gin_login": "^2.0",
        "drupal/gin_toolbar": "^1.0@RC",
        "drupal/google_tag": "^1.6",
        "drupal/honeypot": "^2.1",
        "drupal/imce": "^3.0",
        "drupal/imce_rename_plugin": "^2.0",
        "drupal/inline_entity_form": "^1.0@RC",
        "drupal/key_aws": "^1.0",
        "drupal/media_entity_soundcloud": "^3.1",
        "drupal/paragraphs": "^1.15",
        "drupal/pathauto": "^1.11",
        "drupal/quick_node_clone": "^1.16",
        "drupal/redirect": "^1.8",
        "drupal/search_api": "^1.28",
        "drupal/selective_better_exposed_filters": "^3.0@beta",
        "drupal/simple_sitemap": "^4.1",
        "drupal/smart_trim": "^2.1",
        "drupal/smtp": "^1.2",
        "drupal/svg_image_field": "^2.2",
        "drupal/time_field": "^2.1",
        "drupal/token": "^1.12",
        "drupal/twig_field_value": "^2.0",
        "drupal/twig_tweak": "^3.2",
        "drupal/twig_vardumper": "^3.1",
        "drupal/twigsuggest": "^1.0@RC",
        "drupal/tzfield": "^1.7",
        "drupal/uswds_base": "^3.0",
        "drupal/uswds_ckeditor_integration": "2.0.x-dev@dev",
        "drupal/views_ajax_history": "^1.7",
        "drush/drush": "^11.4",
        "jackmoore/colorbox": "^1.6",
        "league/commonmark": "^2.4",
        "phpmailer/phpmailer": "^6.8"
    },
    "conflict": {
        "drupal/drupal": "*"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "composer/installers": true,
            "drupal/core-composer-scaffold": true,
            "drupal/core-project-message": true,
            "phpstan/extension-installer": true,
            "dealerdirect/phpcodesniffer-composer-installer": true,
            "cweagans/composer-patches": true
        },
        "sort-packages": true
    },
    "extra": {
        "drupal-scaffold": {
            "locations": {
                "web-root": "web/"
            },
            "file-mapping": {
                "[web-root]/sites/development.services.yml": false
            },
            "excludes": [
                "sites/development.services.yml"
            ]
        },
        "installer-paths": {
            "web/core": [
                "type:drupal-core"
            ],
            "web/libraries/{$name}": [
                "type:drupal-library"
            ],
            "web/modules/contrib/{$name}": [
                "type:drupal-module"
            ],
            "web/profiles/contrib/{$name}": [
                "type:drupal-profile"
            ],
            "web/themes/contrib/{$name}": [
                "type:drupal-theme"
            ],
            "drush/Commands/contrib/{$name}": [
                "type:drupal-drush"
            ],
            "web/modules/custom/{$name}": [
                "type:drupal-custom-module"
            ],
            "web/profiles/custom/{$name}": [
                "type:drupal-custom-profile"
            ],
            "web/themes/custom/{$name}": [
                "type:drupal-custom-theme"
            ]
        },
        "patches": {
            "drupal/backup_migrate": {
                "2663046 - Support the mysql connection class, not just mysqli": "https://www.drupal.org/files/issues/backup_migrate-n2663046-8.patch",
                "3228379 - Failed network - error": "https://www.drupal.org/files/issues/2022-02-02/3228379-download-errors-19.patch"
            },
            "drupal/gin": {
                "3309235 - Entity Browser Layout broken - views filters, more-link and footer positioned in line": "https://www.drupal.org/files/issues/2023-01-10/gin-remove-content-entity-browser-broken-grid-3309235-12.patch"
            }
        }
    }
}

composer.lock:

{
    "_readme": [
        "This file locks the dependencies of your project to a known state",
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
        "This file is @generated automatically"
    ],
    "content-hash": "4b1e530a92624ee9f56e472b3a8b3dac",
    "packages": [
        {
            "name": "aptoma/twig-markdown",
            "version": "3.4.1",
            "source": {
                "type": "git",
                "url": "https://github.com/aptoma/twig-markdown.git",
                "reference": "849248b26f0079f380e6559017e69114c57ef52a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/aptoma/twig-markdown/zipball/849248b26f0079f380e6559017e69114c57ef52a",
                "reference": "849248b26f0079f380e6559017e69114c57ef52a",
                "shasum": ""
            },
            "require": {
                "php": "^7.0|^8.0",
                "twig/twig": "^2.7.0|^3.0"
            },
            "require-dev": {
                "erusev/parsedown": "^1.6",
                "guzzlehttp/guzzle": "^7.2",
                "http-interop/http-factory-guzzle": "^1.0",
                "knplabs/github-api": "~3.0",
                "league/commonmark": "~0.5",
                "michelf/php-markdown": "~1",
                "php": "^7.2.5|^8.0",
                "phpunit/phpunit": "~6.0|~5.0|~8.0"
            },
            "suggest": {
                "knplabs/github-api": "Needed for using GitHub's Markdown engine provided through their API.",
                "michelf/php-markdown": "Original Markdown engine with MarkdownExtra."
            },
            "type": "library",
            "autoload": {
                "psr-0": {
                    "Aptoma": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Gunnar Lium",
                    "email": "gunnar@aptoma.com"
                },
                {
                    "name": "Joris Berthelot",
                    "email": "joris@berthelot.tel"
                }
            ],
            "description": "Twig extension to work with Markdown content",
            "keywords": [
                "markdown",
                "twig"
            ],
            "support": {
                "issues": "https://github.com/aptoma/twig-markdown/issues",
                "source": "https://github.com/aptoma/twig-markdown/tree/3.4.1"
            },
            "time": "2021-12-14T11:12:21+00:00"
        },
        {
            "name": "asm89/stack-cors",
            "version": "v2.1.1",
            "source": {
                "type": "git",
                "url": "https://github.com/asm89/stack-cors.git",
                "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
                "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
                "shasum": ""
            },
            "require": {
                "php": "^7.2|^8.0",
                "symfony/http-foundation": "^4|^5|^6",
                "symfony/http-kernel": "^4|^5|^6"
            },
            "require-dev": {
                "phpunit/phpunit": "^7|^9",
                "squizlabs/php_codesniffer": "^3.5"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.1-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Asm89\\Stack\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Alexander",
                    "email": "iam.asm89@gmail.com"
                }
            ],
            "description": "Cross-origin resource sharing library and stack middleware",
            "homepage": "https://github.com/asm89/stack-cors",
            "keywords": [
                "cors",
                "stack"
            ],
            "support": {
                "issues": "https://github.com/asm89/stack-cors/issues",
                "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
            },
            "time": "2022-01-18T09:12:03+00:00"
        },
        {
            "name": "aws/aws-crt-php",
            "version": "v1.0.4",
            "source": {
                "type": "git",
                "url": "https://github.com/awslabs/aws-crt-php.git",
                "reference": "f5c64ee7c5fce196e2519b3d9b7138649efe032d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/f5c64ee7c5fce196e2519b3d9b7138649efe032d",
                "reference": "f5c64ee7c5fce196e2519b3d9b7138649efe032d",
                "shasum": ""
            },
            "require": {
                "php": ">=5.5"
            },
            "require-dev": {
                "phpunit/phpunit": "^4.8.35|^5.6.3"
            },
            "type": "library",
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "Apache-2.0"
            ],
            "authors": [
                {
                    "name": "AWS SDK Common Runtime Team",
                    "email": "aws-sdk-common-runtime@amazon.com"
                }
            ],
            "description": "AWS Common Runtime for PHP",
            "homepage": "http://aws.amazon.com/sdkforphp",
            "keywords": [
                "amazon",
                "aws",
                "crt",
                "sdk"
            ],
            "support": {
                "issues": "https://github.com/awslabs/aws-crt-php/issues",
                "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.4"
            },
            "time": "2023-01-31T23:08:25+00:00"
        },
        {
            "name": "aws/aws-sdk-php",
            "version": "3.258.9",
            "source": {
                "type": "git",
                "url": "https://github.com/aws/aws-sdk-php.git",
                "reference": "1d42f8170ecc775a85e0efa96476caa2d4be13ae"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1d42f8170ecc775a85e0efa96476caa2d4be13ae",
                "reference": "1d42f8170ecc775a85e0efa96476caa2d4be13ae",
                "shasum": ""
            },
            "require": {
                "aws/aws-crt-php": "^1.0.4",
                "ext-json": "*",
                "ext-pcre": "*",
                "ext-simplexml": "*",
                "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
                "guzzlehttp/promises": "^1.4.0",
                "guzzlehttp/psr7": "^1.8.5 || ^2.3",
                "mtdowling/jmespath.php": "^2.6",
                "php": ">=5.5"
            },
            "require-dev": {
                "andrewsville/php-token-reflection": "^1.4",
                "aws/aws-php-sns-message-validator": "~1.0",
                "behat/behat": "~3.0",
                "composer/composer": "^1.10.22",
                "dms/phpunit-arraysubset-asserts": "^0.4.0",
                "doctrine/cache": "~1.4",
                "ext-dom": "*",
                "ext-openssl": "*",
                "ext-pcntl": "*",
                "ext-sockets": "*",
                "nette/neon": "^2.3",
                "paragonie/random_compat": ">= 2",
                "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
                "psr/cache": "^1.0",
                "psr/simple-cache": "^1.0",
                "sebastian/comparator": "^1.2.3 || ^4.0",
                "yoast/phpunit-polyfills": "^1.0"
            },
            "suggest": {
                "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
                "doctrine/cache": "To use the DoctrineCacheAdapter",
                "ext-curl": "To send requests using cURL",
                "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
                "ext-sockets": "To use client-side monitoring"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.0-dev"
                }
            },
            "autoload": {
                "files": [
                    "src/functions.php"
                ],
                "psr-4": {
                    "Aws\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "Apache-2.0"
            ],
            "authors": [
                {
                    "name": "Amazon Web Services",
                    "homepage": "http://aws.amazon.com"
                }
            ],
            "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
            "homepage": "http://aws.amazon.com/sdkforphp",
            "keywords": [
                "amazon",
                "aws",
                "cloud",
                "dynamodb",
                "ec2",
                "glacier",
                "s3",
                "sdk"
            ],
            "support": {
                "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
                "issues": "https://github.com/aws/aws-sdk-php/issues",
                "source": "https://github.com/aws/aws-sdk-php/tree/3.258.9"
            },
            "time": "2023-02-13T19:21:26+00:00"
        },
        {
            "name": "chi-teck/drupal-code-generator",
            "version": "2.6.2",
            "source": {
                "type": "git",
                "url": "https://github.com/Chi-teck/drupal-code-generator.git",
                "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
                "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
                "shasum": ""
            },
            "require": {
                "ext-json": "*",
                "php": ">=7.4",
                "psr/log": "^1.1 || ^2.0 || ^3.0",
                "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
                "symfony/filesystem": "^4.4 || ^5.1 || ^6",
                "symfony/polyfill-php80": "^1.23",
                "symfony/string": "^5.1 || ^6",
                "twig/twig": "^2.14.11 || ^3.1"
            },
            "conflict": {
                "squizlabs/php_codesniffer": "<3.6"
            },
            "require-dev": {
                "chi-teck/drupal-coder-extension": "^1.2",
                "drupal/coder": "^8.3.14",
                "phpspec/prophecy-phpunit": "^2.0",
                "phpunit/phpunit": "^9.4",
                "squizlabs/php_codesniffer": "^3.5",
                "symfony/var-dumper": "^5.2 || ^6.0",
                "symfony/yaml": "^5.2 || ^6.0"
            },
            "bin": [
                "bin/dcg"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "DrupalCodeGenerator\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "description": "Drupal code generator",
            "support": {
                "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
                "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
            },
            "time": "2022-11-11T15:34:04+00:00"
        },
        {
            "name": "commerceguys/addressing",
            "version": "v1.4.2",
            "source": {
                "type": "git",
                "url": "https://github.com/commerceguys/addressing.git",
                "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
                "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
                "shasum": ""
            },
            "require": {
                "doctrine/collections": "^1.2 || ^2.0",
                "php": ">=7.3"
            },
            "require-dev": {
                "ext-json": "*",
                "mikey179/vfsstream": "^1.6.10",
                "phpunit/phpunit": "^9.5",
                "squizlabs/php_codesniffer": "^3.6",
                "symfony/validator": "^4.4 || ^5.4 || ^6.0"
            },
            "suggest": {
                "symfony/validator": "to validate addresses"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "CommerceGuys\\Addressing\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Bojan Zivanovic"
                },
                {
                    "name": "Damien Tournoud"
                }
            ],
            "description": "Addressing library powered by CLDR and Google's address data.",
            "keywords": [
                "address",
                "internationalization",
                "localization",
                "postal"
            ],
            "support": {
                "issues": "https://github.com/commerceguys/addressing/issues",
                "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
            },
            "time": "2023-02-15T10:11:14+00:00"
        },
        {
            "name": "commerceguys/intl",
            "version": "v2.0.4",
            "source": {
                "type": "git",
                "url": "https://github.com/commerceguys/intl.git",
                "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/commerceguys/intl/zipball/f78fe7f9bdb239d1f4cf441f61c6f950b03720bb",
                "reference": "f78fe7f9bdb239d1f4cf441f61c6f950b03720bb",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0"
            },
            "require-dev": {
                "mikey179/vfsstream": "1.*",
                "phpunit/phpunit": "^10"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "CommerceGuys\\Intl\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Bojan Zivanovic"
                },
                {
                    "name": "Jonathan Sacksick"
                }
            ],
            "description": "Internationalization library powered by CLDR data.",
            "support": {
                "issues": "https://github.com/commerceguys/intl/issues",
                "source": "https://github.com/commerceguys/intl/tree/v2.0.4"
            },
            "time": "2023-04-17T12:17:15+00:00"
        },
        {
            "name": "composer/installers",
            "version": "v2.2.0",
            "source": {
                "type": "git",
                "url": "https://github.com/composer/installers.git",
                "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
                "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
                "shasum": ""
            },
            "require": {
                "composer-plugin-api": "^1.0 || ^2.0",
                "php": "^7.2 || ^8.0"
            },
            "require-dev": {
                "composer/composer": "1.6.* || ^2.0",
                "composer/semver": "^1 || ^3",
                "phpstan/phpstan": "^0.12.55",
                "phpstan/phpstan-phpunit": "^0.12.16",
                "symfony/phpunit-bridge": "^5.3",
                "symfony/process": "^5"
            },
            "type": "composer-plugin",
            "extra": {
                "class": "Composer\\Installers\\Plugin",
                "branch-alias": {
                    "dev-main": "2.x-dev"
                },
                "plugin-modifies-install-path": true
            },
            "autoload": {
                "psr-4": {
                    "Composer\\Installers\\": "src/Composer/Installers"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Kyle Robinson Young",
                    "email": "kyle@dontkry.com",
                    "homepage": "https://github.com/shama"
                }
            ],
            "description": "A multi-framework Composer library installer",
            "homepage": "https://composer.github.io/installers/",
            "keywords": [
                "Dolibarr",
                "Eliasis",
                "Hurad",
                "ImageCMS",
                "Kanboard",
                "Lan Management System",
                "MODX Evo",
                "MantisBT",
                "Mautic",
                "Maya",
                "OXID",
                "Plentymarkets",
                "Porto",
                "RadPHP",
                "SMF",
                "Starbug",
                "Thelia",
                "Whmcs",
                "WolfCMS",
                "agl",
                "annotatecms",
                "attogram",
                "bitrix",
                "cakephp",
                "chef",
                "cockpit",
                "codeigniter",
                "concrete5",
                "croogo",
                "dokuwiki",
                "drupal",
                "eZ Platform",
                "elgg",
                "expressionengine",
                "fuelphp",
                "grav",
                "installer",
                "itop",
                "known",
                "kohana",
                "laravel",
                "lavalite",
                "lithium",
                "magento",
                "majima",
                "mako",
                "matomo",
                "mediawiki",
                "miaoxing",
                "modulework",
                "modx",
                "moodle",
                "osclass",
                "pantheon",
                "phpbb",
                "piwik",
                "ppi",
                "processwire",
                "puppet",
                "pxcms",
                "reindex",
                "roundcube",
                "shopware",
                "silverstripe",
                "sydes",
                "sylius",
                "tastyigniter",
                "wordpress",
                "yawik",
                "zend",
                "zikula"
            ],
            "support": {
                "issues": "https://github.com/composer/installers/issues",
                "source": "https://github.com/composer/installers/tree/v2.2.0"
            },
            "funding": [
                {
                    "url": "https://packagist.com",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/composer",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
                    "type": "tidelift"
                }
            ],
            "time": "2022-08-20T06:45:11+00:00"
        },
        {
            "name": "composer/semver",
            "version": "3.3.2",
            "source": {
                "type": "git",
                "url": "https://github.com/composer/semver.git",
                "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
                "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
                "shasum": ""
            },
            "require": {
                "php": "^5.3.2 || ^7.0 || ^8.0"
            },
            "require-dev": {
                "phpstan/phpstan": "^1.4",
                "symfony/phpunit-bridge": "^4.2 || ^5"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Composer\\Semver\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nils Adermann",
                    "email": "naderman@naderman.de",
                    "homepage": "http://www.naderman.de"
                },
                {
                    "name": "Jordi Boggiano",
                    "email": "j.boggiano@seld.be",
                    "homepage": "http://seld.be"
                },
                {
                    "name": "Rob Bast",
                    "email": "rob.bast@gmail.com",
                    "homepage": "http://robbast.nl"
                }
            ],
            "description": "Semver library that offers utilities, version constraint parsing and validation.",
            "keywords": [
                "semantic",
                "semver",
                "validation",
                "versioning"
            ],
            "support": {
                "irc": "irc://irc.freenode.org/composer",
                "issues": "https://github.com/composer/semver/issues",
                "source": "https://github.com/composer/semver/tree/3.3.2"
            },
            "funding": [
                {
                    "url": "https://packagist.com",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/composer",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/composer/composer",
                    "type": "tidelift"
                }
            ],
            "time": "2022-04-01T19:23:25+00:00"
        },
        {
            "name": "consolidation/annotated-command",
            "version": "4.7.1",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/annotated-command.git",
                "reference": "fd263e3e9341d29758025b1a9b2878e3247525be"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/fd263e3e9341d29758025b1a9b2878e3247525be",
                "reference": "fd263e3e9341d29758025b1a9b2878e3247525be",
                "shasum": ""
            },
            "require": {
                "consolidation/output-formatters": "^4.1.1",
                "php": ">=7.1.3",
                "psr/log": "^1|^2|^3",
                "symfony/console": "^4.4.8|^5|^6",
                "symfony/event-dispatcher": "^4.4.8|^5|^6",
                "symfony/finder": "^4.4.8|^5|^6"
            },
            "require-dev": {
                "composer-runtime-api": "^2.0",
                "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
                "squizlabs/php_codesniffer": "^3",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "4.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\AnnotatedCommand\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "Initialize Symfony Console commands from annotated command class methods.",
            "support": {
                "issues": "https://github.com/consolidation/annotated-command/issues",
                "source": "https://github.com/consolidation/annotated-command/tree/4.7.1"
            },
            "time": "2022-12-06T22:57:25+00:00"
        },
        {
            "name": "consolidation/config",
            "version": "2.1.2",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/config.git",
                "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
                "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
                "shasum": ""
            },
            "require": {
                "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
                "grasmash/expander": "^2.0.1 || ^3",
                "php": ">=7.1.3",
                "symfony/event-dispatcher": "^4 || ^5 || ^6"
            },
            "require-dev": {
                "ext-json": "*",
                "phpunit/phpunit": ">=7.5.20",
                "squizlabs/php_codesniffer": "^3",
                "symfony/console": "^4 || ^5 || ^6",
                "symfony/yaml": "^4 || ^5 || ^6",
                "yoast/phpunit-polyfills": "^1"
            },
            "suggest": {
                "symfony/event-dispatcher": "Required to inject configuration into Command options",
                "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\Config\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "Provide configuration services for a commandline tool.",
            "support": {
                "issues": "https://github.com/consolidation/config/issues",
                "source": "https://github.com/consolidation/config/tree/2.1.2"
            },
            "time": "2022-10-06T17:48:03+00:00"
        },
        {
            "name": "consolidation/filter-via-dot-access-data",
            "version": "2.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
                "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
                "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
                "shasum": ""
            },
            "require": {
                "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
                "php": ">=7.1.3"
            },
            "require-dev": {
                "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
                "squizlabs/php_codesniffer": "^3",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\Filter\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
            "support": {
                "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
            },
            "time": "2021-12-30T03:56:08+00:00"
        },
        {
            "name": "consolidation/log",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/log.git",
                "reference": "caaad9d70dae54eb49002666f000e3c607066878"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
                "reference": "caaad9d70dae54eb49002666f000e3c607066878",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0.0",
                "psr/log": "^3",
                "symfony/console": "^5 || ^6"
            },
            "require-dev": {
                "phpunit/phpunit": ">=7.5.20",
                "squizlabs/php_codesniffer": "^3",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\Log\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
            "support": {
                "issues": "https://github.com/consolidation/log/issues",
                "source": "https://github.com/consolidation/log/tree/3.0.0"
            },
            "time": "2022-04-05T16:53:32+00:00"
        },
        {
            "name": "consolidation/output-formatters",
            "version": "4.2.3",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/output-formatters.git",
                "reference": "cbb50cc86775f14972003f797b61e232788bee1f"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/cbb50cc86775f14972003f797b61e232788bee1f",
                "reference": "cbb50cc86775f14972003f797b61e232788bee1f",
                "shasum": ""
            },
            "require": {
                "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
                "php": ">=7.1.3",
                "symfony/console": "^4|^5|^6",
                "symfony/finder": "^4|^5|^6"
            },
            "require-dev": {
                "php-coveralls/php-coveralls": "^2.4.2",
                "phpunit/phpunit": ">=7",
                "squizlabs/php_codesniffer": "^3",
                "symfony/var-dumper": "^4|^5|^6",
                "symfony/yaml": "^4|^5|^6",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "suggest": {
                "symfony/var-dumper": "For using the var_dump formatter"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "4.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\OutputFormatters\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "Format text by applying transformations provided by plug-in formatters.",
            "support": {
                "issues": "https://github.com/consolidation/output-formatters/issues",
                "source": "https://github.com/consolidation/output-formatters/tree/4.2.3"
            },
            "time": "2022-10-17T04:01:40+00:00"
        },
        {
            "name": "consolidation/robo",
            "version": "4.0.3",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/robo.git",
                "reference": "d655b79c8e916f9f9947df0ddc1040967ddc5a28"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/robo/zipball/d655b79c8e916f9f9947df0ddc1040967ddc5a28",
                "reference": "d655b79c8e916f9f9947df0ddc1040967ddc5a28",
                "shasum": ""
            },
            "require": {
                "consolidation/annotated-command": "^4.3",
                "consolidation/config": "^2.0.1",
                "consolidation/log": "^2.0.2 || ^3",
                "consolidation/output-formatters": "^4.1.2",
                "consolidation/self-update": "^2.0",
                "league/container": "^3.3.1 || ^4.0",
                "php": ">=8.0",
                "phpowermove/docblock": "^4.0",
                "symfony/console": "^6",
                "symfony/event-dispatcher": "^6",
                "symfony/filesystem": "^6",
                "symfony/finder": "^6",
                "symfony/process": "^6",
                "symfony/yaml": "^6"
            },
            "conflict": {
                "codegyre/robo": "*"
            },
            "require-dev": {
                "natxet/cssmin": "3.0.4",
                "patchwork/jsqueeze": "^2",
                "pear/archive_tar": "^1.4.4",
                "phpunit/phpunit": "^7.5.20 || ^8",
                "squizlabs/php_codesniffer": "^3.6",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "suggest": {
                "natxet/cssmin": "For minifying CSS files in taskMinify",
                "patchwork/jsqueeze": "For minifying JS files in taskMinify",
                "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
                "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
            },
            "bin": [
                "robo"
            ],
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Robo\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Davert",
                    "email": "davert.php@resend.cc"
                }
            ],
            "description": "Modern task runner",
            "support": {
                "issues": "https://github.com/consolidation/robo/issues",
                "source": "https://github.com/consolidation/robo/tree/4.0.3"
            },
            "time": "2022-12-07T14:13:05+00:00"
        },
        {
            "name": "consolidation/self-update",
            "version": "2.0.5",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/self-update.git",
                "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3",
                "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3",
                "shasum": ""
            },
            "require": {
                "composer/semver": "^3.2",
                "php": ">=5.5.0",
                "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
                "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
            },
            "bin": [
                "scripts/release"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "SelfUpdate\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Alexander Menk",
                    "email": "menk@mestrona.net"
                },
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                }
            ],
            "description": "Provides a self:update command for Symfony Console applications.",
            "support": {
                "issues": "https://github.com/consolidation/self-update/issues",
                "source": "https://github.com/consolidation/self-update/tree/2.0.5"
            },
            "time": "2022-02-09T22:44:24+00:00"
        },
        {
            "name": "consolidation/site-alias",
            "version": "4.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/site-alias.git",
                "reference": "103fbc9bad6bbadb1f7533454a8f070ddce18e13"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/site-alias/zipball/103fbc9bad6bbadb1f7533454a8f070ddce18e13",
                "reference": "103fbc9bad6bbadb1f7533454a8f070ddce18e13",
                "shasum": ""
            },
            "require": {
                "consolidation/config": "^1.2.1 || ^2",
                "php": ">=7.4",
                "symfony/filesystem": "^5.4 || ^6",
                "symfony/finder": "^5 || ^6"
            },
            "require-dev": {
                "php-coveralls/php-coveralls": "^2.4.2",
                "phpunit/phpunit": ">=7",
                "squizlabs/php_codesniffer": "^3",
                "symfony/var-dumper": "^4",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "4.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\SiteAlias\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                },
                {
                    "name": "Moshe Weitzman",
                    "email": "weitzman@tejasa.com"
                }
            ],
            "description": "Manage alias records for local and remote sites.",
            "support": {
                "issues": "https://github.com/consolidation/site-alias/issues",
                "source": "https://github.com/consolidation/site-alias/tree/4.0.0"
            },
            "time": "2022-10-14T03:41:22+00:00"
        },
        {
            "name": "consolidation/site-process",
            "version": "5.2.0",
            "source": {
                "type": "git",
                "url": "https://github.com/consolidation/site-process.git",
                "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
                "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
                "shasum": ""
            },
            "require": {
                "consolidation/config": "^2",
                "consolidation/site-alias": "^3 || ^4",
                "php": ">=8.0.14",
                "symfony/console": "^5.4 || ^6",
                "symfony/process": "^6"
            },
            "require-dev": {
                "phpunit/phpunit": "^9",
                "squizlabs/php_codesniffer": "^3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "5.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Consolidation\\SiteProcess\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                },
                {
                    "name": "Moshe Weitzman",
                    "email": "weitzman@tejasa.com"
                }
            ],
            "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
            "support": {
                "issues": "https://github.com/consolidation/site-process/issues",
                "source": "https://github.com/consolidation/site-process/tree/5.2.0"
            },
            "time": "2022-12-06T17:57:16+00:00"
        },
        {
            "name": "cweagans/composer-patches",
            "version": "1.7.3",
            "source": {
                "type": "git",
                "url": "https://github.com/cweagans/composer-patches.git",
                "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
                "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
                "shasum": ""
            },
            "require": {
                "composer-plugin-api": "^1.0 || ^2.0",
                "php": ">=5.3.0"
            },
            "require-dev": {
                "composer/composer": "~1.0 || ~2.0",
                "phpunit/phpunit": "~4.6"
            },
            "type": "composer-plugin",
            "extra": {
                "class": "cweagans\\Composer\\Patches"
            },
            "autoload": {
                "psr-4": {
                    "cweagans\\Composer\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Cameron Eagans",
                    "email": "me@cweagans.net"
                }
            ],
            "description": "Provides a way to patch Composer packages.",
            "support": {
                "issues": "https://github.com/cweagans/composer-patches/issues",
                "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
            },
            "time": "2022-12-20T22:53:13+00:00"
        },
        {
            "name": "dflydev/dot-access-data",
            "version": "v3.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
                "reference": "f41715465d65213d644d3141a6a93081be5d3549"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
                "reference": "f41715465d65213d644d3141a6a93081be5d3549",
                "shasum": ""
            },
            "require": {
                "php": "^7.1 || ^8.0"
            },
            "require-dev": {
                "phpstan/phpstan": "^0.12.42",
                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
                "scrutinizer/ocular": "1.6.0",
                "squizlabs/php_codesniffer": "^3.5",
                "vimeo/psalm": "^4.0.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Dflydev\\DotAccessData\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Dragonfly Development Inc.",
                    "email": "info@dflydev.com",
                    "homepage": "http://dflydev.com"
                },
                {
                    "name": "Beau Simensen",
                    "email": "beau@dflydev.com",
                    "homepage": "http://beausimensen.com"
                },
                {
                    "name": "Carlos Frutos",
                    "email": "carlos@kiwing.it",
                    "homepage": "https://github.com/cfrutos"
                },
                {
                    "name": "Colin O'Dell",
                    "email": "colinodell@gmail.com",
                    "homepage": "https://www.colinodell.com"
                }
            ],
            "description": "Given a deep data structure, access data by dot notation.",
            "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
            "keywords": [
                "access",
                "data",
                "dot",
                "notation"
            ],
            "support": {
                "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
                "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
            },
            "time": "2022-10-27T11:44:00+00:00"
        },
        {
            "name": "doctrine/annotations",
            "version": "1.13.3",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/annotations.git",
                "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
                "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
                "shasum": ""
            },
            "require": {
                "doctrine/lexer": "1.*",
                "ext-tokenizer": "*",
                "php": "^7.1 || ^8.0",
                "psr/cache": "^1 || ^2 || ^3"
            },
            "require-dev": {
                "doctrine/cache": "^1.11 || ^2.0",
                "doctrine/coding-standard": "^6.0 || ^8.1",
                "phpstan/phpstan": "^1.4.10 || ^1.8.0",
                "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
                "symfony/cache": "^4.4 || ^5.2",
                "vimeo/psalm": "^4.10"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Benjamin Eberlei",
                    "email": "kontakt@beberlei.de"
                },
                {
                    "name": "Jonathan Wage",
                    "email": "jonwage@gmail.com"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                }
            ],
            "description": "Docblock Annotations Parser",
            "homepage": "https://www.doctrine-project.org/projects/annotations.html",
            "keywords": [
                "annotations",
                "docblock",
                "parser"
            ],
            "support": {
                "issues": "https://github.com/doctrine/annotations/issues",
                "source": "https://github.com/doctrine/annotations/tree/1.13.3"
            },
            "time": "2022-07-02T10:48:51+00:00"
        },
        {
            "name": "doctrine/collections",
            "version": "2.1.2",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/collections.git",
                "reference": "db8cda536a034337f7dd63febecc713d4957f9ee"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/collections/zipball/db8cda536a034337f7dd63febecc713d4957f9ee",
                "reference": "db8cda536a034337f7dd63febecc713d4957f9ee",
                "shasum": ""
            },
            "require": {
                "doctrine/deprecations": "^1",
                "php": "^8.1"
            },
            "require-dev": {
                "doctrine/coding-standard": "^10.0",
                "ext-json": "*",
                "phpstan/phpstan": "^1.8",
                "phpstan/phpstan-phpunit": "^1.0",
                "phpunit/phpunit": "^9.5",
                "vimeo/psalm": "^4.22"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Common\\Collections\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Benjamin Eberlei",
                    "email": "kontakt@beberlei.de"
                },
                {
                    "name": "Jonathan Wage",
                    "email": "jonwage@gmail.com"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                }
            ],
            "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
            "homepage": "https://www.doctrine-project.org/projects/collections.html",
            "keywords": [
                "array",
                "collections",
                "iterators",
                "php"
            ],
            "support": {
                "issues": "https://github.com/doctrine/collections/issues",
                "source": "https://github.com/doctrine/collections/tree/2.1.2"
            },
            "funding": [
                {
                    "url": "https://www.doctrine-project.org/sponsorship.html",
                    "type": "custom"
                },
                {
                    "url": "https://www.patreon.com/phpdoctrine",
                    "type": "patreon"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
                    "type": "tidelift"
                }
            ],
            "time": "2022-12-27T23:41:38+00:00"
        },
        {
            "name": "doctrine/common",
            "version": "3.4.3",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/common.git",
                "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
                "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
                "shasum": ""
            },
            "require": {
                "doctrine/persistence": "^2.0 || ^3.0",
                "php": "^7.1 || ^8.0"
            },
            "require-dev": {
                "doctrine/coding-standard": "^9.0 || ^10.0",
                "doctrine/collections": "^1",
                "phpstan/phpstan": "^1.4.1",
                "phpstan/phpstan-phpunit": "^1",
                "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
                "squizlabs/php_codesniffer": "^3.0",
                "symfony/phpunit-bridge": "^6.1",
                "vimeo/psalm": "^4.4"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Common\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Benjamin Eberlei",
                    "email": "kontakt@beberlei.de"
                },
                {
                    "name": "Jonathan Wage",
                    "email": "jonwage@gmail.com"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                },
                {
                    "name": "Marco Pivetta",
                    "email": "ocramius@gmail.com"
                }
            ],
            "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
            "homepage": "https://www.doctrine-project.org/projects/common.html",
            "keywords": [
                "common",
                "doctrine",
                "php"
            ],
            "support": {
                "issues": "https://github.com/doctrine/common/issues",
                "source": "https://github.com/doctrine/common/tree/3.4.3"
            },
            "funding": [
                {
                    "url": "https://www.doctrine-project.org/sponsorship.html",
                    "type": "custom"
                },
                {
                    "url": "https://www.patreon.com/phpdoctrine",
                    "type": "patreon"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
                    "type": "tidelift"
                }
            ],
            "time": "2022-10-09T11:47:59+00:00"
        },
        {
            "name": "doctrine/deprecations",
            "version": "v1.1.1",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/deprecations.git",
                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
                "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
                "shasum": ""
            },
            "require": {
                "php": "^7.1 || ^8.0"
            },
            "require-dev": {
                "doctrine/coding-standard": "^9",
                "phpstan/phpstan": "1.4.10 || 1.10.15",
                "phpstan/phpstan-phpunit": "^1.0",
                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
                "psalm/plugin-phpunit": "0.18.4",
                "psr/log": "^1 || ^2 || ^3",
                "vimeo/psalm": "4.30.0 || 5.12.0"
            },
            "suggest": {
                "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
            "homepage": "https://www.doctrine-project.org/",
            "support": {
                "issues": "https://github.com/doctrine/deprecations/issues",
                "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
            },
            "time": "2023-06-03T09:27:29+00:00"
        },
        {
            "name": "doctrine/event-manager",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/event-manager.git",
                "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
                "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
                "shasum": ""
            },
            "require": {
                "php": "^8.1"
            },
            "conflict": {
                "doctrine/common": "<2.9"
            },
            "require-dev": {
                "doctrine/coding-standard": "^10",
                "phpstan/phpstan": "^1.8.8",
                "phpunit/phpunit": "^9.5",
                "vimeo/psalm": "^4.28"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Common\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Benjamin Eberlei",
                    "email": "kontakt@beberlei.de"
                },
                {
                    "name": "Jonathan Wage",
                    "email": "jonwage@gmail.com"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                },
                {
                    "name": "Marco Pivetta",
                    "email": "ocramius@gmail.com"
                }
            ],
            "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
            "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
            "keywords": [
                "event",
                "event dispatcher",
                "event manager",
                "event system",
                "events"
            ],
            "support": {
                "issues": "https://github.com/doctrine/event-manager/issues",
                "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
            },
            "funding": [
                {
                    "url": "https://www.doctrine-project.org/sponsorship.html",
                    "type": "custom"
                },
                {
                    "url": "https://www.patreon.com/phpdoctrine",
                    "type": "patreon"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
                    "type": "tidelift"
                }
            ],
            "time": "2022-10-12T20:59:15+00:00"
        },
        {
            "name": "doctrine/lexer",
            "version": "1.2.3",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/lexer.git",
                "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
                "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
                "shasum": ""
            },
            "require": {
                "php": "^7.1 || ^8.0"
            },
            "require-dev": {
                "doctrine/coding-standard": "^9.0",
                "phpstan/phpstan": "^1.3",
                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
                "vimeo/psalm": "^4.11"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                }
            ],
            "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
            "homepage": "https://www.doctrine-project.org/projects/lexer.html",
            "keywords": [
                "annotations",
                "docblock",
                "lexer",
                "parser",
                "php"
            ],
            "support": {
                "issues": "https://github.com/doctrine/lexer/issues",
                "source": "https://github.com/doctrine/lexer/tree/1.2.3"
            },
            "funding": [
                {
                    "url": "https://www.doctrine-project.org/sponsorship.html",
                    "type": "custom"
                },
                {
                    "url": "https://www.patreon.com/phpdoctrine",
                    "type": "patreon"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
                    "type": "tidelift"
                }
            ],
            "time": "2022-02-28T11:07:21+00:00"
        },
        {
            "name": "doctrine/persistence",
            "version": "3.2.0",
            "source": {
                "type": "git",
                "url": "https://github.com/doctrine/persistence.git",
                "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
                "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
                "shasum": ""
            },
            "require": {
                "doctrine/event-manager": "^1 || ^2",
                "php": "^7.2 || ^8.0",
                "psr/cache": "^1.0 || ^2.0 || ^3.0"
            },
            "conflict": {
                "doctrine/common": "<2.10"
            },
            "require-dev": {
                "composer/package-versions-deprecated": "^1.11",
                "doctrine/coding-standard": "^11",
                "doctrine/common": "^3.0",
                "phpstan/phpstan": "1.9.4",
                "phpstan/phpstan-phpunit": "^1",
                "phpstan/phpstan-strict-rules": "^1.1",
                "phpunit/phpunit": "^8.5 || ^9.5",
                "symfony/cache": "^4.4 || ^5.4 || ^6.0",
                "vimeo/psalm": "4.30.0 || 5.3.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Doctrine\\Persistence\\": "src/Persistence"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Guilherme Blanco",
                    "email": "guilhermeblanco@gmail.com"
                },
                {
                    "name": "Roman Borschel",
                    "email": "roman@code-factory.org"
                },
                {
                    "name": "Benjamin Eberlei",
                    "email": "kontakt@beberlei.de"
                },
                {
                    "name": "Jonathan Wage",
                    "email": "jonwage@gmail.com"
                },
                {
                    "name": "Johannes Schmitt",
                    "email": "schmittjoh@gmail.com"
                },
                {
                    "name": "Marco Pivetta",
                    "email": "ocramius@gmail.com"
                }
            ],
            "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
            "homepage": "https://www.doctrine-project.org/projects/persistence.html",
            "keywords": [
                "mapper",
                "object",
                "odm",
                "orm",
                "persistence"
            ],
            "support": {
                "issues": "https://github.com/doctrine/persistence/issues",
                "source": "https://github.com/doctrine/persistence/tree/3.2.0"
            },
            "funding": [
                {
                    "url": "https://www.doctrine-project.org/sponsorship.html",
                    "type": "custom"
                },
                {
                    "url": "https://www.patreon.com/phpdoctrine",
                    "type": "patreon"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-17T18:32:04+00:00"
        },
        {
            "name": "drupal/address",
            "version": "1.12.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/address.git",
                "reference": "8.x-1.12"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
                "reference": "8.x-1.12",
                "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
            },
            "require": {
                "commerceguys/addressing": "^1.4.2",
                "drupal/core": "^9.2 || ^10",
                "php": "^7.3 || ^8.0"
            },
            "require-dev": {
                "drupal/token": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.12",
                    "datestamp": "1684710176",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "dww",
                    "homepage": "https://www.drupal.org/user/46549"
                },
                {
                    "name": "googletorp",
                    "homepage": "https://www.drupal.org/user/386230"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Provides functionality for storing, validating and displaying international postal addresses.",
            "homepage": "http://drupal.org/project/address",
            "support": {
                "source": "https://git.drupalcode.org/project/address"
            }
        },
        {
            "name": "drupal/admin_toolbar",
            "version": "3.4.1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/admin_toolbar.git",
                "reference": "3.4.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.1.zip",
                "reference": "3.4.1",
                "shasum": "bcb15ab40016becdb3ac8f21d7d1a721f48f3577"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "require-dev": {
                "drupal/admin_toolbar_tools": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.4.1",
                    "datestamp": "1684944156",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Wilfrid Roze (eme)",
                    "homepage": "https://www.drupal.org/u/eme",
                    "role": "Maintainer"
                },
                {
                    "name": "Romain Jarraud (romainj)",
                    "homepage": "https://www.drupal.org/u/romainj",
                    "role": "Maintainer"
                },
                {
                    "name": "Adrian Cid Almaguer (adriancid)",
                    "homepage": "https://www.drupal.org/u/adriancid",
                    "email": "adriancid@gmail.com",
                    "role": "Maintainer"
                },
                {
                    "name": "Mohamed Anis Taktak (matio89)",
                    "homepage": "https://www.drupal.org/u/matio89",
                    "role": "Maintainer"
                },
                {
                    "name": "matio89",
                    "homepage": "https://www.drupal.org/user/2320090"
                },
                {
                    "name": "Musa.thomas",
                    "homepage": "https://www.drupal.org/user/1213824"
                },
                {
                    "name": "romainj",
                    "homepage": "https://www.drupal.org/user/370706"
                }
            ],
            "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
            "homepage": "http://drupal.org/project/admin_toolbar",
            "keywords": [
                "Drupal",
                "Toolbar"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/admin_toolbar",
                "issues": "https://www.drupal.org/project/issues/admin_toolbar"
            }
        },
        {
            "name": "drupal/admin_toolbar_tools",
            "version": "3.3.0",
            "require": {
                "drupal/admin_toolbar": "*",
                "drupal/core": "^9.2 || ^10"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "3.3.0",
                    "datestamp": "1669567837",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "adriancid",
                    "homepage": "https://www.drupal.org/user/1962106"
                },
                {
                    "name": "bolbol",
                    "homepage": "https://www.drupal.org/user/3400070"
                },
                {
                    "name": "eme",
                    "homepage": "https://www.drupal.org/user/542492"
                },
                {
                    "name": "fethi.krout",
                    "homepage": "https://www.drupal.org/user/3206765"
                },
                {
                    "name": "matio89",
                    "homepage": "https://www.drupal.org/user/2320090"
                },
                {
                    "name": "Musa.thomas",
                    "homepage": "https://www.drupal.org/user/1213824"
                },
                {
                    "name": "romainj",
                    "homepage": "https://www.drupal.org/user/370706"
                }
            ],
            "description": "Adds menu links like Flush cache, Run cron, Run updates, and Logout under Drupal icon.",
            "homepage": "https://www.drupal.org/project/admin_toolbar",
            "support": {
                "source": "https://git.drupalcode.org/project/admin_toolbar"
            }
        },
        {
            "name": "drupal/asset_injector",
            "version": "2.17.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/asset_injector.git",
                "reference": "8.x-2.17"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.17.zip",
                "reference": "8.x-2.17",
                "shasum": "e273ba3c8736a25496caf9e7a7b0e47e6052594c"
            },
            "require": {
                "drupal/core": "^9.3 || ^10.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-2.17",
                    "datestamp": "1683305302",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Mike Decker",
                    "homepage": "https://www.drupal.org/u/pookmish"
                },
                {
                    "name": "Axel Rutz",
                    "homepage": "https://www.drupal.org/u/axelrutz"
                }
            ],
            "description": "Adds CSS or JS to the page output based on configurable rules.",
            "homepage": "http://drupal.org/project/asset_injector",
            "support": {
                "source": "https://git.drupalcode.org/project/asset_injector",
                "issues": "https://www.drupal.org/project/issues/asset_injector"
            }
        },
        {
            "name": "drupal/auto_entitylabel",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/auto_entitylabel.git",
                "reference": "8.x-3.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0.zip",
                "reference": "8.x-3.0",
                "shasum": "8dd54d4b677f2c7259a15afd7b71d0d1b6f6b4a6"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "require-dev": {
                "drupal/token": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-3.0",
                    "datestamp": "1671545557",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bforchhammer",
                    "homepage": "https://www.drupal.org/user/216396"
                },
                {
                    "name": "colan",
                    "homepage": "https://www.drupal.org/user/58704"
                },
                {
                    "name": "diqidoq",
                    "homepage": "https://www.drupal.org/user/1001934"
                },
                {
                    "name": "japerry",
                    "homepage": "https://www.drupal.org/user/45640"
                },
                {
                    "name": "Pravin Ajaaz",
                    "homepage": "https://www.drupal.org/user/2910049"
                },
                {
                    "name": "purushotam.rai",
                    "homepage": "https://www.drupal.org/user/3193859"
                },
                {
                    "name": "RenatoG",
                    "homepage": "https://www.drupal.org/user/3326031"
                },
                {
                    "name": "VladimirAus",
                    "homepage": "https://www.drupal.org/user/673120"
                }
            ],
            "description": "Allows hiding of entity label fields and automatic label creation.",
            "homepage": "https://www.drupal.org/project/auto_entitylabel",
            "support": {
                "source": "https://git.drupalcode.org/project/auto_entitylabel",
                "issues": "https://www.drupal.org/project/issues/auto_entitylabel"
            }
        },
        {
            "name": "drupal/backup_migrate",
            "version": "5.0.3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/backup_migrate.git",
                "reference": "5.0.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
                "reference": "5.0.3",
                "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "suggest": {
                "defuse/php-encryption": "Optional encryption of saved backups."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "5.0.3",
                    "datestamp": "1671366510",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "See contributors",
                    "homepage": "https://www.drupal.org/node/189065/committers",
                    "role": "Developer"
                },
                {
                    "name": "DamienMcKenna",
                    "homepage": "https://www.drupal.org/user/108450"
                },
                {
                    "name": "dgorton",
                    "homepage": "https://www.drupal.org/user/19044"
                },
                {
                    "name": "ikit-claw",
                    "homepage": "https://www.drupal.org/user/3285813"
                },
                {
                    "name": "ronan",
                    "homepage": "https://www.drupal.org/user/72815"
                }
            ],
            "description": "Backup and Migrate Drupal Module",
            "homepage": "https://www.drupal.org/project/backup_migrate",
            "support": {
                "source": "https://git.drupalcode.org/project/backup_migrate",
                "issues": "https://www.drupal.org/project/issues/backup_migrate",
                "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
            }
        },
        {
            "name": "drupal/better_exposed_filters",
            "version": "6.0.3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
                "reference": "6.0.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
                "reference": "6.0.3",
                "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
            },
            "require": {
                "drupal/core": "^9 || ^10",
                "drupal/jquery_ui": "^1.6",
                "drupal/jquery_ui_datepicker": "^2.0",
                "drupal/jquery_ui_slider": "^2.0.0",
                "drupal/jquery_ui_touch_punch": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "6.0.3",
                    "datestamp": "1671541877",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Mike Keran",
                    "homepage": "https://www.drupal.org/u/mikeker"
                },
                {
                    "name": "Martin Keereman",
                    "homepage": "https://www.drupal.org/u/etroid"
                },
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
                },
                {
                    "name": "mikeker",
                    "homepage": "https://www.drupal.org/user/192273"
                },
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/user/3580850"
                },
                {
                    "name": "podarok",
                    "homepage": "https://www.drupal.org/user/116002"
                },
                {
                    "name": "rlhawk",
                    "homepage": "https://www.drupal.org/user/352283"
                }
            ],
            "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
            "homepage": "https://www.drupal.org/project/better_exposed_filters",
            "support": {
                "source": "https://git.drupalcode.org/project/better_exposed_filters",
                "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
            }
        },
        {
            "name": "drupal/block_field",
            "version": "1.0.0-rc4",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/block_field.git",
                "reference": "8.x-1.0-rc4"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/block_field-8.x-1.0-rc4.zip",
                "reference": "8.x-1.0-rc4",
                "shasum": "97958ceace8ca80852f40b734ff7197e172d726e"
            },
            "require": {
                "drupal/core": "^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.0-rc4",
                    "datestamp": "1667511464",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "RC releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "acbramley",
                    "homepage": "https://www.drupal.org/user/1036766"
                },
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "fenstrat",
                    "homepage": "https://www.drupal.org/user/362649"
                },
                {
                    "name": "jrockowitz",
                    "homepage": "https://www.drupal.org/user/371407"
                },
                {
                    "name": "michaellander",
                    "homepage": "https://www.drupal.org/user/636494"
                },
                {
                    "name": "paulocs",
                    "homepage": "https://www.drupal.org/user/3640109"
                }
            ],
            "description": "Provides a field that allows a content entity to create and configure custom block instances.",
            "homepage": "https://www.drupal.org/project/block_field",
            "support": {
                "source": "https://git.drupalcode.org/project/block_field"
            }
        },
        {
            "name": "drupal/ckeditor5_embedded_content",
            "version": "1.0.0-alpha3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/ckeditor5_embedded_content.git",
                "reference": "1.0.0-alpha3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/ckeditor5_embedded_content-1.0.0-alpha3.zip",
                "reference": "1.0.0-alpha3",
                "shasum": "a3a7514d1f690159f74ede2deb88f1678dcd629d"
            },
            "require": {
                "drupal/core": "^9.2 || ^10",
                "ext-dom": "*",
                "ext-libxml": "*",
                "php": "^7.3 || ^8.0",
                "symfony/css-selector": "^4",
                "symfony/dom-crawler": "^4"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "1.0.0-alpha3",
                    "datestamp": "1664187278",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Project has not opted into security advisory coverage!"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "nuez",
                    "homepage": "https://www.drupal.org/user/758020"
                }
            ],
            "description": "Provides a ckeditor5 and drupal plugin to embed styled content into ckeditor text areas.",
            "homepage": "http://drupal.org/project/address",
            "support": {
                "source": "https://git.drupalcode.org/project/ckeditor5_embedded_content"
            }
        },
        {
            "name": "drupal/cloudfront_edge_caching",
            "version": "dev-2.x",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/cloudfront_edge_caching.git",
                "reference": "7b506c0a42dfb6f83aa19849f6d87df102b7b46c"
            },
            "require": {
                "aws/aws-sdk-php": "^3.2",
                "drupal/admin_toolbar": ">=1.24",
                "drupal/admin_toolbar_tools": "*",
                "drupal/core": "^8 || ^9 || ^10",
                "drupal/key_aws": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "branch-alias": {
                    "dev-2.x": "2.x-dev"
                },
                "drupal": {
                    "version": "8.x-2.1+3-dev",
                    "datestamp": "1655380357",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Dev releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "George Anderson (geoanders)",
                    "homepage": "https://www.drupal.org/u/geoanders",
                    "role": "Maintainer"
                },
                {
                    "name": "jarodriguez",
                    "homepage": "https://www.drupal.org/user/1551452"
                }
            ],
            "description": "Invalidate cached pages in Amazon Cloudfront.",
            "homepage": "https://drupal.org/project/cloudfront_edge_caching",
            "support": {
                "source": "https://git.drupalcode.org/project/cloudfront_edge_caching",
                "issues": "https://drupal.org/project/issues/cloudfront_edge_caching"
            }
        },
        {
            "name": "drupal/colorbox",
            "version": "2.0.1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/colorbox.git",
                "reference": "2.0.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/colorbox-2.0.1.zip",
                "reference": "2.0.1",
                "shasum": "ed5c40e3abc8f9d7ab6b1dc7f70958de266db404"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10"
            },
            "suggest": {
                "jackmoore/colorbox": "The Colorbox library is required to use the drupal/colorbox module."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.1",
                    "datestamp": "1684418527",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
                    "role": "Maintainer"
                },
                {
                    "name": "Fredrik Jonsson",
                    "homepage": "https://www.drupal.org/u/frjo",
                    "role": "Maintainer"
                },
                {
                    "name": "RenatoG",
                    "homepage": "https://www.drupal.org/user/3326031"
                },
                {
                    "name": "Unsupported Projects",
                    "homepage": "https://www.drupal.org/user/291168"
                }
            ],
            "description": "A light-weight, customizable lightbox plugin for jQuery.",
            "homepage": "https://www.drupal.org/project/colorbox",
            "support": {
                "source": "https://git.drupalcode.org/project/colorbox",
                "issues": "https://www.drupal.org/project/issues/colorbox"
            }
        },
        {
            "name": "drupal/colorbox_inline",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/colorbox_inline.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/colorbox_inline-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "078e74b4a4b383c270a9901cecbb914fab1ac3b0"
            },
            "require": {
                "drupal/colorbox": "*",
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1671057589",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "NickDickinsonWilde",
                    "homepage": "https://www.drupal.org/user/3094661"
                },
                {
                    "name": "Sam152",
                    "homepage": "https://www.drupal.org/user/1485048"
                }
            ],
            "description": "Provides inline colorbox functionality.",
            "homepage": "https://www.drupal.org/project/colorbox_inline",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/colorbox_inline",
                "issues": "http://drupal.org/project/issues/colorbox_inline"
            }
        },
        {
            "name": "drupal/commerce",
            "version": "2.36.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/commerce.git",
                "reference": "8.x-2.36"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/commerce-8.x-2.36.zip",
                "reference": "8.x-2.36",
                "shasum": "4114db573120036d5075c027e3bb9a61d3bdb582"
            },
            "require": {
                "commerceguys/intl": "^2.0.2",
                "drupal/address": "^1.7",
                "drupal/core": "^9.3 || ^10",
                "drupal/entity": "^1.0",
                "drupal/entity_reference_revisions": "~1.0",
                "drupal/inline_entity_form": "^1.0@RC",
                "drupal/profile": "^1.2",
                "drupal/state_machine": "^1.5",
                "drupal/token": "^1.7",
                "ext-bcmath": "*",
                "php": "^8.0"
            },
            "conflict": {
                "drupal/commerce_shipping": "<2.1",
                "drupal/physical": "<1.3"
            },
            "require-dev": {
                "drupal/commerce_cart": "*",
                "drupal/commerce_number_pattern": "*",
                "drupal/commerce_order": "*",
                "drupal/commerce_payment": "*",
                "drupal/commerce_price": "*",
                "drupal/commerce_product": "*",
                "drupal/commerce_store": "*",
                "drupal/entity_print": "^2.2",
                "drupal/entity_reference_revisions": "*",
                "drupal/mailsystem": "^4.3",
                "drupal/profile": "*",
                "drupal/state_machine": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Drupal Commerce is a flexible eCommerce solution.",
            "homepage": "https://drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/commerce_cart_redirection",
            "version": "3.2.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/commerce_cart_redirection.git",
                "reference": "3.2.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/commerce_cart_redirection-3.2.0.zip",
                "reference": "3.2.0",
                "shasum": "d586ed13e34b3e126e58c7fb330682cd32a23c2f"
            },
            "require": {
                "drupal/core": "^9.5 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.2.0",
                    "datestamp": "1673567385",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "AndyD328",
                    "homepage": "https://www.drupal.org/user/2261214"
                },
                {
                    "name": "calbasi",
                    "homepage": "https://www.drupal.org/user/318818"
                }
            ],
            "description": "Redirect to your cart page after adding a product to it",
            "homepage": "https://www.drupal.org/project/commerce_cart_redirection",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/commerce_cart_redirection",
                "issues": "https://www.drupal.org/project/issues/commerce_cart_redirection"
            }
        },
        {
            "name": "drupal/commerce_email",
            "version": "1.1.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/commerce_email.git",
                "reference": "8.x-1.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/commerce_email-8.x-1.1.zip",
                "reference": "8.x-1.1",
                "shasum": "6003b64df9ccdbfb76d36f8b574986373c9379cc"
            },
            "require": {
                "drupal/commerce": "^2.0",
                "drupal/core": "^9.3 || ^10",
                "drupal/token": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.1",
                    "datestamp": "1685459266",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "paul.linney",
                    "homepage": "https://www.drupal.org/user/928636"
                },
                {
                    "name": "rinasek",
                    "homepage": "https://www.drupal.org/user/1245514"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Provides a UI for defining emails to send in response to various Drupal Commerce events.",
            "homepage": "https://www.drupal.org/project/commerce_email",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce_email"
            }
        },
        {
            "name": "drupal/commerce_number_pattern",
            "version": "2.36.0",
            "require": {
                "drupal/commerce": "*",
                "drupal/commerce_store": "*",
                "drupal/core": "^9.3 || ^10"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Provides configurable patterns for generating sequential numbers.",
            "homepage": "https://www.drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/commerce_order",
            "version": "2.36.0",
            "require": {
                "drupal/commerce": "*",
                "drupal/commerce_number_pattern": "*",
                "drupal/commerce_price": "*",
                "drupal/commerce_store": "*",
                "drupal/core": "^9.3 || ^10",
                "drupal/entity_reference_revisions": "*",
                "drupal/profile": "*",
                "drupal/state_machine": "*"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Defines the Order entity and associated features.",
            "homepage": "https://www.drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/commerce_price",
            "version": "2.36.0",
            "require": {
                "drupal/commerce": "*",
                "drupal/core": "^9.3 || ^10"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Defines the Currency entity.",
            "homepage": "https://www.drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/commerce_product",
            "version": "2.36.0",
            "require": {
                "drupal/commerce": "*",
                "drupal/commerce_price": "*",
                "drupal/commerce_store": "*",
                "drupal/core": "^9.3 || ^10"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Defines the Product entity and associated features.",
            "homepage": "https://www.drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/commerce_shipping",
            "version": "2.6.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/commerce_shipping.git",
                "reference": "8.x-2.6"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/commerce_shipping-8.x-2.6.zip",
                "reference": "8.x-2.6",
                "shasum": "29e24ea5133ec1fbb606902bcfcfac504d8bc607"
            },
            "require": {
                "drupal/commerce": "^2.29",
                "drupal/commerce_order": "*",
                "drupal/commerce_price": "*",
                "drupal/core": "^9.2 || ^10",
                "drupal/physical": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-2.6",
                    "datestamp": "1678443617",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "googletorp",
                    "homepage": "https://www.drupal.org/user/386230"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Provides shipping functionality for Commerce.",
            "homepage": "http://drupal.org/project/commerce_shipping",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce_shipping"
            }
        },
        {
            "name": "drupal/commerce_stock",
            "version": "dev-1.x",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/commerce_stock.git",
                "reference": "e04563a294d45df33a0e26f5ca929ea91003bacd"
            },
            "require": {
                "drupal/commerce": "~2.0",
                "drupal/commerce_order": "*",
                "drupal/commerce_product": "*",
                "drupal/core": "^8 || ^9 || ^10"
            },
            "require-dev": {
                "drupal/commerce_product": "*",
                "drupal/commerce_stock_local": "*"
            },
            "type": "drupal-module",
            "extra": {
                "branch-alias": {
                    "dev-1.x": "1.x-dev"
                },
                "drupal": {
                    "version": "8.x-1.0+4-dev",
                    "datestamp": "1681243180",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Dev releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "guy_schneerson",
                    "homepage": "https://www.drupal.org/user/755184"
                },
                {
                    "name": "iAugur",
                    "homepage": "https://www.drupal.org/user/750068"
                },
                {
                    "name": "olafkarsten",
                    "homepage": "https://www.drupal.org/user/352745"
                },
                {
                    "name": "rfay",
                    "homepage": "https://www.drupal.org/user/30906"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Provides a stock management framework based on rules to manage stock levels of commerce products",
            "homepage": "https://www.drupal.org/project/commerce_stock",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/commerce_stock",
                "issues": "http://drupal.org/project/issues/commerce_stock"
            }
        },
        {
            "name": "drupal/commerce_store",
            "version": "2.36.0",
            "require": {
                "drupal/commerce": "*",
                "drupal/commerce_price": "*",
                "drupal/core": "^9.3 || ^10"
            },
            "type": "metapackage",
            "extra": {
                "drupal": {
                    "version": "8.x-2.36",
                    "datestamp": "1685624434",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Defines the Store entity and associated features.",
            "homepage": "https://www.drupal.org/project/commerce",
            "support": {
                "source": "https://git.drupalcode.org/project/commerce"
            }
        },
        {
            "name": "drupal/conditional_fields",
            "version": "4.0.0-alpha3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/conditional_fields.git",
                "reference": "4.0.0-alpha3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/conditional_fields-4.0.0-alpha3.zip",
                "reference": "4.0.0-alpha3",
                "shasum": "6024d7527bc81e45832e8d1da01792268df94224"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10"
            },
            "require-dev": {
                "drupal/paragraphs": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "4.0.0-alpha3",
                    "datestamp": "1683751149",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Alpha releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "colan",
                    "homepage": "https://www.drupal.org/user/58704"
                },
                {
                    "name": "ergonlogic",
                    "homepage": "https://www.drupal.org/user/368613"
                },
                {
                    "name": "geek-merlin",
                    "homepage": "https://www.drupal.org/user/229048"
                },
                {
                    "name": "heddn",
                    "homepage": "https://www.drupal.org/user/1463982"
                },
                {
                    "name": "itsekhmistro",
                    "homepage": "https://www.drupal.org/user/928152"
                },
                {
                    "name": "mparker17",
                    "homepage": "https://www.drupal.org/user/536298"
                },
                {
                    "name": "OlgaRabodzei",
                    "homepage": "https://www.drupal.org/user/3389198"
                },
                {
                    "name": "peterpoe",
                    "homepage": "https://www.drupal.org/user/55674"
                },
                {
                    "name": "saurabh-2k17",
                    "homepage": "https://www.drupal.org/user/3622252"
                },
                {
                    "name": "szhu",
                    "homepage": "https://www.drupal.org/user/3525295"
                },
                {
                    "name": "thalles",
                    "homepage": "https://www.drupal.org/user/3589086"
                }
            ],
            "description": "Define dependencies between fields based on their states and values.",
            "homepage": "https://www.drupal.org/project/conditional_fields",
            "support": {
                "source": "https://git.drupalcode.org/project/conditional_fields"
            }
        },
        {
            "name": "drupal/config_filter",
            "version": "1.10.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/config_filter.git",
                "reference": "8.x-1.10"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.10.zip",
                "reference": "8.x-1.10",
                "shasum": "c5002f2b9dece3c684db754123936d1388b80b8d"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10"
            },
            "suggest": {
                "drupal/config_split": "Split site configuration for different environments."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.10",
                    "datestamp": "1656936763",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Fabian Bircher",
                    "homepage": "https://www.drupal.org/u/bircher",
                    "email": "opensource@fabianbircher.com",
                    "role": "Maintainer"
                },
                {
                    "name": "Nuvole Web",
                    "homepage": "http://nuvole.org",
                    "email": "info@nuvole.org",
                    "role": "Maintainer"
                },
                {
                    "name": "pescetti",
                    "homepage": "https://www.drupal.org/user/436244"
                }
            ],
            "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
            "homepage": "https://www.drupal.org/project/config_filter",
            "keywords": [
                "Drupal",
                "configuration",
                "configuration management"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/config_filter",
                "issues": "https://www.drupal.org/project/issues/config_filter",
                "slack": "https://drupal.slack.com/archives/C45342CDD"
            }
        },
        {
            "name": "drupal/config_split",
            "version": "1.9.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/config_split.git",
                "reference": "8.x-1.9"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.9.zip",
                "reference": "8.x-1.9",
                "shasum": "cb2a17f590ae057ff8a1864f57e2e114b2395a86"
            },
            "require": {
                "drupal/config_filter": "^1",
                "drupal/core": "^9.3 || ^10"
            },
            "conflict": {
                "drupal/console": "<1.3.2"
            },
            "suggest": {
                "drupal/chosen": "Chosen uses the Chosen jQuery plugin to make the <select> elements more user-friendly.",
                "drupal/select2_all": "Applies the Select2 library to all select fields on the site similar to the Chosen module."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.9",
                    "datestamp": "1656976425",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Fabian Bircher",
                    "homepage": "https://www.drupal.org/u/bircher",
                    "email": "opensource@fabianbircher.com",
                    "role": "Maintainer"
                },
                {
                    "name": "Nuvole Web",
                    "homepage": "http://nuvole.org",
                    "email": "info@nuvole.org",
                    "role": "Maintainer"
                },
                {
                    "name": "pescetti",
                    "homepage": "https://www.drupal.org/user/436244"
                }
            ],
            "description": "Configuration filter for importing and exporting extra config",
            "homepage": "https://www.drupal.org/project/config_split",
            "keywords": [
                "Drupal",
                "configuration",
                "configuration management"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/config_split",
                "issues": "https://www.drupal.org/project/issues/config_split",
                "slack": "https://drupal.slack.com/archives/C45342CDD"
            }
        },
        {
            "name": "drupal/contact_emails",
            "version": "1.21.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/contact_emails.git",
                "reference": "8.x-1.21"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/contact_emails-8.x-1.21.zip",
                "reference": "8.x-1.21",
                "shasum": "5b67681e9835350011b3577d84d96008b47d6808"
            },
            "require": {
                "drupal/contact_storage": "*",
                "drupal/core": "^8 || ^9 || ^10"
            },
            "require-dev": {
                "drupal/contact_storage": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.21",
                    "datestamp": "1681541283",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "scott_euser",
                    "homepage": "https://www.drupal.org/user/3267594"
                }
            ],
            "description": "Module to handle contact emails",
            "homepage": "https://www.drupal.org/project/contact_emails",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/contact_emails",
                "issues": "https://www.drupal.org/project/issues/contact_emails"
            }
        },
        {
            "name": "drupal/contact_storage",
            "version": "1.3.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/contact_storage.git",
                "reference": "8.x-1.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.3.zip",
                "reference": "8.x-1.3",
                "shasum": "719dad5a991aa32e14c9bcb7b9dc76830e2331df"
            },
            "require": {
                "drupal/core": "^9.1 || ^10",
                "drupal/token": "^1.6"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.3",
                    "datestamp": "1667651867",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "andypost",
                    "homepage": "https://www.drupal.org/user/118908"
                },
                {
                    "name": "Arla",
                    "homepage": "https://www.drupal.org/user/226712"
                },
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "jibran",
                    "homepage": "https://www.drupal.org/user/1198144"
                },
                {
                    "name": "larowlan",
                    "homepage": "https://www.drupal.org/user/395439"
                }
            ],
            "description": "Provides storage and edit capability for contact messages.",
            "homepage": "https://www.drupal.org/project/contact_storage",
            "support": {
                "source": "https://git.drupalcode.org/project/contact_storage"
            }
        },
        {
            "name": "drupal/core",
            "version": "10.0.9",
            "source": {
                "type": "git",
                "url": "https://github.com/drupal/core.git",
                "reference": "1299803690cf035d144c468bab6b6bf7e03aca49"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/drupal/core/zipball/1299803690cf035d144c468bab6b6bf7e03aca49",
                "reference": "1299803690cf035d144c468bab6b6bf7e03aca49",
                "shasum": ""
            },
            "require": {
                "asm89/stack-cors": "^2.1",
                "composer-runtime-api": "^2.1",
                "composer/semver": "^3.3",
                "doctrine/annotations": "^1.13",
                "egulias/email-validator": "^3.2.1",
                "ext-date": "*",
                "ext-dom": "*",
                "ext-filter": "*",
                "ext-gd": "*",
                "ext-hash": "*",
                "ext-json": "*",
                "ext-pcre": "*",
                "ext-pdo": "*",
                "ext-session": "*",
                "ext-simplexml": "*",
                "ext-spl": "*",
                "ext-tokenizer": "*",
                "ext-xml": "*",
                "guzzlehttp/guzzle": "^7.5",
                "guzzlehttp/psr7": "^2.4",
                "masterminds/html5": "^2.7",
                "pear/archive_tar": "^1.4.14",
                "php": ">=8.1.0",
                "psr/log": "^3.0",
                "symfony/console": "^6.2",
                "symfony/dependency-injection": "^6.2",
                "symfony/event-dispatcher": "^6.2",
                "symfony/http-foundation": "^6.2",
                "symfony/http-kernel": "^6.2",
                "symfony/mime": "^6.2",
                "symfony/polyfill-iconv": "^1.26",
                "symfony/process": "^6.2",
                "symfony/psr-http-message-bridge": "^2.1",
                "symfony/routing": "^6.2",
                "symfony/serializer": "^6.2",
                "symfony/validator": "^6.2",
                "symfony/yaml": "^6.2",
                "twig/twig": "^3.4.3"
            },
            "conflict": {
                "drush/drush": "<8.1.10"
            },
            "replace": {
                "drupal/core-annotation": "self.version",
                "drupal/core-assertion": "self.version",
                "drupal/core-class-finder": "self.version",
                "drupal/core-datetime": "self.version",
                "drupal/core-dependency-injection": "self.version",
                "drupal/core-diff": "self.version",
                "drupal/core-discovery": "self.version",
                "drupal/core-event-dispatcher": "self.version",
                "drupal/core-file-cache": "self.version",
                "drupal/core-file-security": "self.version",
                "drupal/core-filesystem": "self.version",
                "drupal/core-front-matter": "self.version",
                "drupal/core-gettext": "self.version",
                "drupal/core-graph": "self.version",
                "drupal/core-http-foundation": "self.version",
                "drupal/core-php-storage": "self.version",
                "drupal/core-plugin": "self.version",
                "drupal/core-proxy-builder": "self.version",
                "drupal/core-render": "self.version",
                "drupal/core-serialization": "self.version",
                "drupal/core-transliteration": "self.version",
                "drupal/core-utility": "self.version",
                "drupal/core-uuid": "self.version",
                "drupal/core-version": "self.version"
            },
            "suggest": {
                "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
            },
            "type": "drupal-core",
            "extra": {
                "drupal-scaffold": {
                    "file-mapping": {
                        "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
                        "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
                        "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
                        "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
                        "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
                        "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
                        "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
                        "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
                        "[web-root]/index.php": "assets/scaffold/files/index.php",
                        "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
                        "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
                        "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
                        "[web-root]/update.php": "assets/scaffold/files/update.php",
                        "[web-root]/web.config": "assets/scaffold/files/web.config",
                        "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
                        "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
                        "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
                        "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
                        "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
                        "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
                        "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
                        "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
                        "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
                    }
                }
            },
            "autoload": {
                "files": [
                    "includes/bootstrap.inc"
                ],
                "psr-4": {
                    "Drupal\\Core\\": "lib/Drupal/Core",
                    "Drupal\\Component\\": "lib/Drupal/Component"
                },
                "classmap": [
                    "lib/Drupal.php",
                    "lib/Drupal/Component/DependencyInjection/Container.php",
                    "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
                    "lib/Drupal/Component/FileCache/FileCacheFactory.php",
                    "lib/Drupal/Component/Utility/Timer.php",
                    "lib/Drupal/Component/Utility/Unicode.php",
                    "lib/Drupal/Core/Cache/Cache.php",
                    "lib/Drupal/Core/Cache/CacheBackendInterface.php",
                    "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
                    "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
                    "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
                    "lib/Drupal/Core/Cache/DatabaseBackend.php",
                    "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
                    "lib/Drupal/Core/Database/Connection.php",
                    "lib/Drupal/Core/Database/Database.php",
                    "lib/Drupal/Core/Database/StatementInterface.php",
                    "lib/Drupal/Core/DependencyInjection/Container.php",
                    "lib/Drupal/Core/DrupalKernel.php",
                    "lib/Drupal/Core/DrupalKernelInterface.php",
                    "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
                    "lib/Drupal/Core/Site/Settings.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "description": "Drupal is an open source content management platform powering millions of websites and applications.",
            "support": {
                "source": "https://github.com/drupal/core/tree/10.0.9"
            },
            "time": "2023-05-03T09:53:20+00:00"
        },
        {
            "name": "drupal/core-composer-scaffold",
            "version": "10.0.9",
            "source": {
                "type": "git",
                "url": "https://github.com/drupal/core-composer-scaffold.git",
                "reference": "22c8b48a5b34864bf433ab3eb6ee7670191c0468"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/22c8b48a5b34864bf433ab3eb6ee7670191c0468",
                "reference": "22c8b48a5b34864bf433ab3eb6ee7670191c0468",
                "shasum": ""
            },
            "require": {
                "composer-plugin-api": "^2",
                "php": ">=7.3.0"
            },
            "conflict": {
                "drupal-composer/drupal-scaffold": "*"
            },
            "require-dev": {
                "composer/composer": "^1.8@stable"
            },
            "type": "composer-plugin",
            "extra": {
                "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Drupal\\Composer\\Plugin\\Scaffold\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "description": "A flexible Composer project scaffold builder.",
            "homepage": "https://www.drupal.org/project/drupal",
            "keywords": [
                "drupal"
            ],
            "support": {
                "source": "https://github.com/drupal/core-composer-scaffold/tree/10.0.9"
            },
            "time": "2023-04-30T16:15:41+00:00"
        },
        {
            "name": "drupal/core-project-message",
            "version": "10.0.9",
            "source": {
                "type": "git",
                "url": "https://github.com/drupal/core-project-message.git",
                "reference": "b4bb5b4c67242def27c2abf5892e5d9bfb7d08f1"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/drupal/core-project-message/zipball/b4bb5b4c67242def27c2abf5892e5d9bfb7d08f1",
                "reference": "b4bb5b4c67242def27c2abf5892e5d9bfb7d08f1",
                "shasum": ""
            },
            "require": {
                "composer-plugin-api": "^2",
                "php": ">=7.3.0"
            },
            "type": "composer-plugin",
            "extra": {
                "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
            },
            "autoload": {
                "psr-4": {
                    "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "description": "Adds a message after Composer installation.",
            "homepage": "https://www.drupal.org/project/drupal",
            "keywords": [
                "drupal"
            ],
            "support": {
                "source": "https://github.com/drupal/core-project-message/tree/10.0.9"
            },
            "time": "2022-07-01T08:33:05+00:00"
        },
        {
            "name": "drupal/core-recommended",
            "version": "10.0.9",
            "source": {
                "type": "git",
                "url": "https://github.com/drupal/core-recommended.git",
                "reference": "1584a4bbb5d72133a5ce2fd711254dea80a647dc"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/drupal/core-recommended/zipball/1584a4bbb5d72133a5ce2fd711254dea80a647dc",
                "reference": "1584a4bbb5d72133a5ce2fd711254dea80a647dc",
                "shasum": ""
            },
            "require": {
                "asm89/stack-cors": "~v2.1.1",
                "composer/semver": "~3.3.2",
                "doctrine/annotations": "~1.13.3",
                "doctrine/lexer": "~1.2.3",
                "drupal/core": "10.0.9",
                "egulias/email-validator": "~3.2.1",
                "guzzlehttp/guzzle": "~7.5.0",
                "guzzlehttp/promises": "~1.5.2",
                "guzzlehttp/psr7": "~2.4.5",
                "masterminds/html5": "~2.7.6",
                "pear/archive_tar": "~1.4.14",
                "pear/console_getopt": "~v1.4.3",
                "pear/pear-core-minimal": "~v1.10.11",
                "pear/pear_exception": "~v1.0.2",
                "psr/cache": "~3.0.0",
                "psr/container": "~2.0.2",
                "psr/event-dispatcher": "~1.0.0",
                "psr/http-client": "~1.0.1",
                "psr/http-factory": "~1.0.1",
                "psr/http-message": "~1.0.1",
                "psr/log": "~3.0.0",
                "ralouphie/getallheaders": "~3.0.3",
                "symfony/console": "~v6.2.5",
                "symfony/dependency-injection": "~v6.2.6",
                "symfony/deprecation-contracts": "~v3.2.0",
                "symfony/error-handler": "~v6.2.5",
                "symfony/event-dispatcher": "~v6.2.5",
                "symfony/event-dispatcher-contracts": "~v3.2.0",
                "symfony/http-foundation": "~v6.2.6",
                "symfony/http-kernel": "~v6.2.6",
                "symfony/mime": "~v6.2.5",
                "symfony/polyfill-ctype": "~v1.27.0",
                "symfony/polyfill-iconv": "~v1.27.0",
                "symfony/polyfill-intl-grapheme": "~v1.27.0",
                "symfony/polyfill-intl-idn": "~v1.27.0",
                "symfony/polyfill-intl-normalizer": "~v1.27.0",
                "symfony/polyfill-mbstring": "~v1.27.0",
                "symfony/process": "~v6.2.5",
                "symfony/psr-http-message-bridge": "~v2.1.4",
                "symfony/routing": "~v6.2.5",
                "symfony/serializer": "~v6.2.5",
                "symfony/service-contracts": "~v3.2.0",
                "symfony/string": "~v6.2.5",
                "symfony/translation-contracts": "~v3.2.0",
                "symfony/validator": "~v6.2.5",
                "symfony/var-dumper": "~v6.2.5",
                "symfony/var-exporter": "~v6.2.5",
                "symfony/yaml": "~v6.2.5",
                "twig/twig": "~v3.5.0"
            },
            "conflict": {
                "webflo/drupal-core-strict": "*"
            },
            "type": "metapackage",
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
            "support": {
                "source": "https://github.com/drupal/core-recommended/tree/10.0.9"
            },
            "time": "2023-05-03T09:53:20+00:00"
        },
        {
            "name": "drupal/crop",
            "version": "2.3.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/crop.git",
                "reference": "8.x-2.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.3.zip",
                "reference": "8.x-2.3",
                "shasum": "8e109cf60077f4c605c4d1f895cb3dc28613a23a"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-2.3",
                    "datestamp": "1665437894",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Drupal Media Team",
                    "homepage": "https://www.drupal.org/user/3260690"
                },
                {
                    "name": "phenaproxima",
                    "homepage": "https://www.drupal.org/user/205645"
                },
                {
                    "name": "slashrsm",
                    "homepage": "https://www.drupal.org/user/744628"
                },
                {
                    "name": "woprrr",
                    "homepage": "https://www.drupal.org/user/858604"
                }
            ],
            "description": "Provides storage and API for image crops.",
            "homepage": "https://www.drupal.org/project/crop",
            "support": {
                "source": "https://git.drupalcode.org/project/crop",
                "issues": "https://www.drupal.org/project/issues/crop"
            }
        },
        {
            "name": "drupal/ctools",
            "version": "4.0.3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/ctools.git",
                "reference": "4.0.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/ctools-4.0.3.zip",
                "reference": "4.0.3",
                "shasum": "4f389b14bd2120069386c2f28f8c4cd49bd2ebfc"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "4.0.3",
                    "datestamp": "1668631947",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "branch-alias": {
                    "dev-8.x-3.x": "3.x-dev"
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Kris Vanderwater (EclipseGc)",
                    "homepage": "https://www.drupal.org/u/eclipsegc",
                    "role": "Maintainer"
                },
                {
                    "name": "Jakob Perry (japerry)",
                    "homepage": "https://www.drupal.org/u/japerry",
                    "role": "Maintainer"
                },
                {
                    "name": "Tim Plunkett (tim.plunkett)",
                    "homepage": "https://www.drupal.org/u/timplunkett",
                    "role": "Maintainer"
                },
                {
                    "name": "James Gilliland (neclimdul)",
                    "homepage": "https://www.drupal.org/u/neclimdul",
                    "role": "Maintainer"
                },
                {
                    "name": "Daniel Wehner (dawehner)",
                    "homepage": "https://www.drupal.org/u/dawehner",
                    "role": "Maintainer"
                },
                {
                    "name": "joelpittet",
                    "homepage": "https://www.drupal.org/user/160302"
                },
                {
                    "name": "merlinofchaos",
                    "homepage": "https://www.drupal.org/user/26979"
                },
                {
                    "name": "neclimdul",
                    "homepage": "https://www.drupal.org/user/48673"
                },
                {
                    "name": "sdboyer",
                    "homepage": "https://www.drupal.org/user/146719"
                },
                {
                    "name": "sun",
                    "homepage": "https://www.drupal.org/user/54136"
                },
                {
                    "name": "tim.plunkett",
                    "homepage": "https://www.drupal.org/user/241634"
                }
            ],
            "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
            "homepage": "https://www.drupal.org/project/ctools",
            "support": {
                "source": "https://git.drupalcode.org/project/ctools",
                "issues": "https://www.drupal.org/project/issues/ctools"
            }
        },
        {
            "name": "drupal/devel",
            "version": "5.1.2",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/devel.git",
                "reference": "5.1.2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
                "reference": "5.1.2",
                "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
            },
            "require": {
                "doctrine/common": "^2.7 || ^3.4",
                "drupal/core": "^9 || ^10",
                "php": ">=7.4",
                "symfony/var-dumper": "^4 || ^5 || ^6"
            },
            "conflict": {
                "kint-php/kint": "<3"
            },
            "require-dev": {
                "drush/drush": "^11"
            },
            "suggest": {
                "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "5.1.2",
                    "datestamp": "1686161028",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "drupalspoons",
                    "homepage": "https://www.drupal.org/user/3647684"
                },
                {
                    "name": "moshe weitzman",
                    "homepage": "https://www.drupal.org/user/23"
                }
            ],
            "description": "Various blocks, pages, and functions for developers.",
            "homepage": "https://www.drupal.org/project/devel",
            "support": {
                "source": "https://gitlab.com/drupalspoons/devel",
                "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
                "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
            }
        },
        {
            "name": "drupal/draggableviews",
            "version": "2.1.3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/draggableviews.git",
                "reference": "2.1.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/draggableviews-2.1.3.zip",
                "reference": "2.1.3",
                "shasum": "d22af995f543ab9dfb1c8eeaaa79bdf3ef233879"
            },
            "require": {
                "drupal/core": "^9 || ^10"
            },
            "require-dev": {
                "drupal/draggableviews_demo": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.1.3",
                    "datestamp": "1682439050",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Tyler Struyk (iStryker)",
                    "homepage": "https://www.drupal.org/u/istryker",
                    "email": "tyler.struyk@gmail.com",
                    "role": "Maintainer"
                },
                {
                    "name": "Andrii Podanenko (podarok)",
                    "homepage": "https://www.drupal.org/u/podarok",
                    "email": "podarokua@gmail.com",
                    "role": "Drupal 10+, maintenance."
                },
                {
                    "name": "Yuriy Gerasimov (ygerasimov)",
                    "homepage": "https://www.drupal.org/u/ygerasimov",
                    "email": "yuriy.gerasimov@gmail.com",
                    "role": "Ex Maintainer (D7)"
                },
                {
                    "name": "Severin Unger (sevi)",
                    "homepage": "https://www.drupal.org/u/sevi",
                    "role": "Ex Maintainer (D6)"
                },
                {
                    "name": "podarok",
                    "homepage": "https://www.drupal.org/user/116002"
                },
                {
                    "name": "sevi",
                    "homepage": "https://www.drupal.org/user/199290"
                },
                {
                    "name": "ygerasimov",
                    "homepage": "https://www.drupal.org/user/257311"
                }
            ],
            "description": "DraggableViews module makes views draggable.",
            "homepage": "https://www.drupal.org/project/draggableviews",
            "support": {
                "source": "https://cgit.drupalcode.org/draggableviews",
                "issues": "https://www.drupal.org/project/issues/draggableviews"
            }
        },
        {
            "name": "drupal/easy_breadcrumb",
            "version": "2.0.5",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/easy_breadcrumb.git",
                "reference": "2.0.5"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.5.zip",
                "reference": "2.0.5",
                "shasum": "e73a7c3568fccaf85b3df0ddd98d713f4d2f5415"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.5",
                    "datestamp": "1673559799",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
                    "role": "Maintainer"
                },
                {
                    "name": "Greg Boggs",
                    "homepage": "https://www.drupal.org/u/greg-boggs",
                    "role": "Maintainer"
                },
                {
                    "name": "hmartens",
                    "homepage": "https://www.drupal.org/user/622826"
                },
                {
                    "name": "loopduplicate",
                    "homepage": "https://www.drupal.org/user/717290"
                },
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/user/3580850"
                },
                {
                    "name": "NickDickinsonWilde",
                    "homepage": "https://www.drupal.org/user/3094661"
                },
                {
                    "name": "RenatoG",
                    "homepage": "https://www.drupal.org/user/3326031"
                },
                {
                    "name": "sonemonu",
                    "homepage": "https://www.drupal.org/user/1667988"
                },
                {
                    "name": "tatarbj",
                    "homepage": "https://www.drupal.org/user/649590"
                },
                {
                    "name": "volkswagenchick",
                    "homepage": "https://www.drupal.org/user/3332522"
                }
            ],
            "description": "Adds configuration to the system breadcrumbs.",
            "homepage": "https://www.drupal.org/project/easy_breadcrumb",
            "support": {
                "source": "https://git.drupalcode.org/project/easy_breadcrumb",
                "issues": "https://www.drupal.org/project/issues/easy_breadcrumb"
            }
        },
        {
            "name": "drupal/entity",
            "version": "1.4.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/entity.git",
                "reference": "8.x-1.4"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
                "reference": "8.x-1.4",
                "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
            },
            "require": {
                "drupal/core": "^9.2|^10.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.4",
                    "datestamp": "1661898023",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "dawehner",
                    "homepage": "https://www.drupal.org/user/99340"
                },
                {
                    "name": "dixon_",
                    "homepage": "https://www.drupal.org/user/239911"
                },
                {
                    "name": "fago",
                    "homepage": "https://www.drupal.org/user/16747"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "TR",
                    "homepage": "https://www.drupal.org/user/202830"
                }
            ],
            "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
            "homepage": "https://www.drupal.org/project/entity",
            "support": {
                "source": "https://git.drupalcode.org/project/entity",
                "issues": "https://www.drupal.org/project/issues/entity"
            }
        },
        {
            "name": "drupal/entity_browser",
            "version": "2.9.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/entity_browser.git",
                "reference": "8.x-2.9"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
                "reference": "8.x-2.9",
                "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "require-dev": {
                "drupal/embed": "~1.0",
                "drupal/entity_embed": "1.x-dev",
                "drupal/entity_reference_revisions": "1.x-dev",
                "drupal/entityqueue": "1.x-dev",
                "drupal/inline_entity_form": "1.x-dev",
                "drupal/paragraphs": "1.x-dev",
                "drupal/token": "1.x-dev"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-2.9",
                    "datestamp": "1674070933",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "Janez Urevc",
                    "homepage": "https://github.com/slashrsm",
                    "role": "Maintainer"
                },
                {
                    "name": "Primoz Hmeljak",
                    "homepage": "https://github.com/primsi",
                    "role": "Maintainer"
                },
                {
                    "name": "See other contributors",
                    "homepage": "https://www.drupal.org/node/1943336/committers",
                    "role": "contributor"
                },
                {
                    "name": "Drupal Media Team",
                    "homepage": "https://www.drupal.org/user/3260690"
                },
                {
                    "name": "marcingy",
                    "homepage": "https://www.drupal.org/user/77320"
                },
                {
                    "name": "oknate",
                    "homepage": "https://www.drupal.org/user/471638"
                },
                {
                    "name": "Primsi",
                    "homepage": "https://www.drupal.org/user/282629"
                },
                {
                    "name": "samuel.mortenson",
                    "homepage": "https://www.drupal.org/user/2582268"
                },
                {
                    "name": "slashrsm",
                    "homepage": "https://www.drupal.org/user/744628"
                }
            ],
            "description": "Entity browsing and selecting component.",
            "homepage": "http://drupal.org/project/entity_browser",
            "support": {
                "source": "https://git.drupalcode.org/project/entity_browser",
                "issues": "https://www.drupal.org/project/issues/entity_browser",
                "irc": "irc://irc.freenode.org/drupal-contribute"
            }
        },
        {
            "name": "drupal/entity_reference_revisions",
            "version": "1.10.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
                "reference": "8.x-1.10"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
                "reference": "8.x-1.10",
                "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
            },
            "require": {
                "drupal/core": "^9 || ^10"
            },
            "require-dev": {
                "drupal/diff": "1.x-dev"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.10",
                    "datestamp": "1660664712",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "Frans",
                    "homepage": "https://www.drupal.org/user/514222"
                },
                {
                    "name": "jeroen.b",
                    "homepage": "https://www.drupal.org/user/1853532"
                },
                {
                    "name": "miro_dietiker",
                    "homepage": "https://www.drupal.org/user/227761"
                }
            ],
            "description": "Entity Reference Revisions",
            "homepage": "https://www.drupal.org/project/entity_reference_revisions",
            "support": {
                "source": "https://git.drupalcode.org/project/entity_reference_revisions"
            }
        },
        {
            "name": "drupal/facets",
            "version": "2.0.6",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/facets.git",
                "reference": "2.0.6"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/facets-2.0.6.zip",
                "reference": "2.0.6",
                "shasum": "e984e6ce69026c20d2049d4ec53748e67c5e70de"
            },
            "require": {
                "drupal/core": "^9.3 || ^10.0"
            },
            "conflict": {
                "drupal/search_api": "<1.14"
            },
            "require-dev": {
                "drupal/jquery_ui_slider": "~2.0",
                "drupal/jquery_ui_touch_punch": "~1.1",
                "drupal/search_api": "^1.28||1.x-dev"
            },
            "suggest": {
                "drupal/jquery_ui_slider": "Required for the 'Facets Range Widget' module to work",
                "drupal/jquery_ui_touch_punch": "Required for the 'Facets Range Widget' module to work"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.6",
                    "datestamp": "1671207897",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "See all contributors",
                    "homepage": "https://www.drupal.org/node/2348769/committers"
                },
                {
                    "name": "drunken monkey",
                    "homepage": "https://www.drupal.org/user/205582"
                },
                {
                    "name": "mkalkbrenner",
                    "homepage": "https://www.drupal.org/user/124705"
                },
                {
                    "name": "Nick_vh",
                    "homepage": "https://www.drupal.org/user/122682"
                },
                {
                    "name": "StryKaizer",
                    "homepage": "https://www.drupal.org/user/462700"
                }
            ],
            "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.",
            "homepage": "https://www.drupal.org/project/facets",
            "support": {
                "source": "git://git.drupal.org/project/facets.git",
                "issues": "https://www.drupal.org/project/issues/facets",
                "irc": "irc://irc.freenode.org/drupal-search-api"
            }
        },
        {
            "name": "drupal/fancy_file_delete",
            "version": "2.0.8",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/fancy_file_delete.git",
                "reference": "2.0.8"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/fancy_file_delete-2.0.8.zip",
                "reference": "2.0.8",
                "shasum": "2a1ed276f9b08b0ebab4966c64d1d1a741512a08"
            },
            "require": {
                "drupal/core": "^8.7.7 || ^9 || ^10",
                "drupal/views_bulk_operations": "^4.1"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.8",
                    "datestamp": "1672101649",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "ikit-claw",
                    "homepage": "https://www.drupal.org/user/3285813"
                },
                {
                    "name": "jaims-dev",
                    "homepage": "https://www.drupal.org/user/3589760"
                },
                {
                    "name": "labboy0276",
                    "homepage": "https://www.drupal.org/user/2397942"
                }
            ],
            "description": "Delete Multiple Files Based off FID or orphaned / un-managed files.",
            "homepage": "http://drupal.org/project/fancy_file_delete",
            "support": {
                "source": "http://cgit.drupalcode.org/fancy_file_delete",
                "issues": "https://www.drupal.org/project/issues/fancy_file_delete"
            }
        },
        {
            "name": "drupal/field_group",
            "version": "3.4.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/field_group.git",
                "reference": "8.x-3.4"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip",
                "reference": "8.x-3.4",
                "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-3.4",
                    "datestamp": "1667241979",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Hydra",
                    "homepage": "https://www.drupal.org/user/647364"
                },
                {
                    "name": "jyve",
                    "homepage": "https://www.drupal.org/user/591438"
                },
                {
                    "name": "nils.destoop",
                    "homepage": "https://www.drupal.org/user/361625"
                },
                {
                    "name": "Stalski",
                    "homepage": "https://www.drupal.org/user/322618"
                },
                {
                    "name": "swentel",
                    "homepage": "https://www.drupal.org/user/107403"
                }
            ],
            "description": "Provides the field_group module.",
            "homepage": "https://www.drupal.org/project/field_group",
            "support": {
                "source": "https://git.drupalcode.org/project/field_group",
                "issues": "https://www.drupal.org/project/issues/field_group"
            }
        },
        {
            "name": "drupal/focal_point",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/focal_point.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/focal_point-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "ff677594c632b4b87aaace39a90a8cdf48ec3ed4"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "drupal/crop": "^2.3",
                "drupal/jquery_ui": "^1.6",
                "drupal/jquery_ui_draggable": "^2.0"
            },
            "require-dev": {
                "drupal/crop": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1681277837",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Alexander Ross (bleen)",
                    "homepage": "https://www.drupal.org/u/bleen",
                    "role": "Maintainer"
                },
                {
                    "name": "Rajeshreeputra",
                    "homepage": "https://www.drupal.org/user/3418561"
                }
            ],
            "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.",
            "homepage": "https://drupal.org/project/focal_point",
            "support": {
                "source": "https://cgit.drupalcode.org/focal_point",
                "issues": "https://drupal.org/project/issues/focal_point",
                "irc": "irc://irc.freenode.org/drupal-contribute"
            }
        },
        {
            "name": "drupal/gin",
            "version": "3.0.0-rc3",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/gin.git",
                "reference": "8.x-3.0-rc3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc3.zip",
                "reference": "8.x-3.0-rc3",
                "shasum": "8ceb6a446b69023b8c0c86baf30a205bb8163573"
            },
            "require": {
                "drupal/core": "^9 || ^10",
                "drupal/gin_toolbar": "^1.0@beta"
            },
            "type": "drupal-theme",
            "extra": {
                "drupal": {
                    "version": "8.x-3.0-rc3",
                    "datestamp": "1683018296",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "RC releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "scripts": {
                "phpcs": [
                    "phpcs -s --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 0 'web/modules/custom'"
                ]
            },
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Sascha Eggenberger (saschaeggi)",
                    "homepage": "https://www.drupal.org/u/saschaeggi",
                    "role": "Maintainer"
                }
            ],
            "description": "For a better Admin and Content Editor Experience.",
            "homepage": "https://www.drupal.org/project/gin",
            "support": {
                "source": "https://git.drupalcode.org/project/gin",
                "issues": "https://www.drupal.org/project/issues/gin"
            },
            "funding": [
                {
                    "type": "github",
                    "url": "https://github.com/sponsors/saschaeggi"
                },
                {
                    "type": "other",
                    "url": "https://paypal.me/saschaeggi"
                }
            ]
        },
        {
            "name": "drupal/gin_login",
            "version": "2.0.2",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/gin_login.git",
                "reference": "2.0.2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/gin_login-2.0.2.zip",
                "reference": "2.0.2",
                "shasum": "de3180f6418614916e5a99ba686ba93bf8c1dadb"
            },
            "require": {
                "drupal/core": "^8.9 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.2",
                    "datestamp": "1682973994",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "Sascha Eggenberger (saschaeggi)",
                    "homepage": "https://www.drupal.org/u/saschaeggi",
                    "role": "Maintainer"
                }
            ],
            "description": "Custom Drupal Login for Gin theme",
            "homepage": "https://www.drupal.org/project/gin_login",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/gin_login",
                "issues": "https://www.drupal.org/project/issues/gin_login"
            },
            "funding": [
                {
                    "type": "github",
                    "url": "https://github.com/sponsors/saschaeggi"
                },
                {
                    "type": "other",
                    "url": "https://paypal.me/saschaeggi"
                }
            ]
        },
        {
            "name": "drupal/gin_toolbar",
            "version": "1.0.0-rc1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/gin_toolbar.git",
                "reference": "8.x-1.0-rc1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc1.zip",
                "reference": "8.x-1.0-rc1",
                "shasum": "90516f6aa22f4f60f1853bdceb757940f411ec7e"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.0-rc1",
                    "datestamp": "1669666957",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "RC releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "Sascha Eggenberger (saschaeggi)",
                    "homepage": "https://www.drupal.org/u/saschaeggi",
                    "role": "Maintainer"
                }
            ],
            "description": "Gin Toolbar for Frontend use",
            "homepage": "https://www.drupal.org/project/gin_toolbar",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/gin_toolbar",
                "issues": "https://www.drupal.org/project/issues/gin_toolbar"
            },
            "funding": [
                {
                    "type": "github",
                    "url": "https://github.com/sponsors/saschaeggi"
                },
                {
                    "type": "other",
                    "url": "https://paypal.me/saschaeggi"
                }
            ]
        },
        {
            "name": "drupal/google_tag",
            "version": "1.6.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/google_tag.git",
                "reference": "8.x-1.6"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.6.zip",
                "reference": "8.x-1.6",
                "shasum": "d084315e54c2e561b8b64eef86081c2634d054cd"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.6",
                    "datestamp": "1671145853",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "solotandem",
                    "homepage": "https://www.drupal.org/user/240748"
                }
            ],
            "description": "Allows your website analytics to be managed using Google Tag Manager.",
            "homepage": "https://www.drupal.org/project/google_tag",
            "support": {
                "source": "https://git.drupalcode.org/project/google_tag"
            }
        },
        {
            "name": "drupal/honeypot",
            "version": "2.1.2",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/honeypot.git",
                "reference": "2.1.2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.2.zip",
                "reference": "2.1.2",
                "shasum": "9511fd6db37c153f2290950bf79611b27510cede"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "require-dev": {
                "drupal/rules": "^3.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.1.2",
                    "datestamp": "1664658244",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Jeff Geerling",
                    "homepage": "https://www.drupal.org/user/389011",
                    "email": "geerlingguy@mac.com"
                },
                {
                    "name": "Manuel Garcia",
                    "homepage": "https://www.drupal.org/user/213194"
                },
                {
                    "name": "TR",
                    "homepage": "https://www.drupal.org/user/202830"
                },
                {
                    "name": "vijaycs85",
                    "homepage": "https://www.drupal.org/user/93488"
                }
            ],
            "description": "Mitigates spam form submissions using the honeypot method.",
            "homepage": "https://www.drupal.org/project/honeypot",
            "keywords": [
                "deterrent",
                "form",
                "honeypot",
                "honeytrap",
                "php",
                "spam"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/honeypot",
                "issues": "https://www.drupal.org/project/issues/honeypot"
            }
        },
        {
            "name": "drupal/imce",
            "version": "3.0.8",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/imce.git",
                "reference": "3.0.8"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/imce-3.0.8.zip",
                "reference": "3.0.8",
                "shasum": "0abd0d0c7f2e01b2cddd9adde014f82e72453285"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "require-dev": {
                "drupal/ckeditor": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.0.8",
                    "datestamp": "1683975052",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "See contributors",
                    "homepage": "https://www.drupal.org/node/2841111/committers",
                    "role": "Developer"
                },
                {
                    "name": "ufku",
                    "homepage": "https://www.drupal.org/user/9910"
                }
            ],
            "description": "Provides a file manager supporting personal folders.",
            "homepage": "https://drupal.org/project/imce",
            "support": {
                "source": "https://git.drupalcode.org/project/imce",
                "issues": "https://www.drupal.org/project/issues/imce"
            }
        },
        {
            "name": "drupal/imce_rename_plugin",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/imce_rename_plugin.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/imce_rename_plugin-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "55f0519dfe339bdf8c87bbfa04e4ab07b06f3585"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "drupal/imce": "*",
                "ext-mbstring": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1683888882",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "Volodymyr Melnychuk",
                    "homepage": "https://www.drupal.org/user/3138649",
                    "email": "melnychuk.v8@gmail.com"
                }
            ],
            "description": "Plugin Rename for IMCE in order to rename image",
            "homepage": "https://www.drupal.org/project/imce_rename_plugin",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/imce_rename_plugin",
                "issues": "https://www.drupal.org/project/issues/imce_rename_plugin"
            }
        },
        {
            "name": "drupal/inline_entity_form",
            "version": "1.0.0-rc15",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/inline_entity_form.git",
                "reference": "8.x-1.0-rc15"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
                "reference": "8.x-1.0-rc15",
                "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10",
                "php": ">=7.1"
            },
            "require-dev": {
                "drupal/entity_reference_revisions": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.0-rc15",
                    "datestamp": "1678126675",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "RC releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "dawehner",
                    "homepage": "https://www.drupal.org/user/99340"
                },
                {
                    "name": "geek-merlin",
                    "homepage": "https://www.drupal.org/user/229048"
                },
                {
                    "name": "joachim",
                    "homepage": "https://www.drupal.org/user/107701"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "oknate",
                    "homepage": "https://www.drupal.org/user/471638"
                },
                {
                    "name": "podarok",
                    "homepage": "https://www.drupal.org/user/116002"
                },
                {
                    "name": "ram4nd",
                    "homepage": "https://www.drupal.org/user/601534"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                },
                {
                    "name": "slashrsm",
                    "homepage": "https://www.drupal.org/user/744628"
                },
                {
                    "name": "webflo",
                    "homepage": "https://www.drupal.org/user/254778"
                }
            ],
            "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
            "homepage": "https://www.drupal.org/project/inline_entity_form",
            "support": {
                "source": "https://git.drupalcode.org/project/inline_entity_form"
            }
        },
        {
            "name": "drupal/jquery_ui",
            "version": "1.6.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/jquery_ui.git",
                "reference": "8.x-1.6"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
                "reference": "8.x-1.6",
                "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.6",
                    "datestamp": "1668521197",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bnjmnm",
                    "homepage": "https://www.drupal.org/user/2369194"
                },
                {
                    "name": "jjeff",
                    "homepage": "https://www.drupal.org/user/17190"
                },
                {
                    "name": "lauriii",
                    "homepage": "https://www.drupal.org/user/1078742"
                },
                {
                    "name": "litwol",
                    "homepage": "https://www.drupal.org/user/78134"
                },
                {
                    "name": "mfb",
                    "homepage": "https://www.drupal.org/user/12302"
                },
                {
                    "name": "mfer",
                    "homepage": "https://www.drupal.org/user/25701"
                },
                {
                    "name": "mikelutz",
                    "homepage": "https://www.drupal.org/user/2972409"
                },
                {
                    "name": "nod_",
                    "homepage": "https://www.drupal.org/user/598310"
                },
                {
                    "name": "phenaproxima",
                    "homepage": "https://www.drupal.org/user/205645"
                },
                {
                    "name": "RobLoach",
                    "homepage": "https://www.drupal.org/user/61114"
                },
                {
                    "name": "sun",
                    "homepage": "https://www.drupal.org/user/54136"
                },
                {
                    "name": "webchick",
                    "homepage": "https://www.drupal.org/user/24967"
                },
                {
                    "name": "Wim Leers",
                    "homepage": "https://www.drupal.org/user/99777"
                },
                {
                    "name": "zrpnr",
                    "homepage": "https://www.drupal.org/user/1448368"
                }
            ],
            "description": "Provides jQuery UI library.",
            "homepage": "https://www.drupal.org/project/jquery_ui",
            "support": {
                "source": "https://git.drupalcode.org/project/jquery_ui"
            }
        },
        {
            "name": "drupal/jquery_ui_datepicker",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
            },
            "require": {
                "drupal/core": "^9.2 || ^10",
                "drupal/jquery_ui": "^1.6"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1670871494",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bnjmnm",
                    "homepage": "https://www.drupal.org/user/2369194"
                },
                {
                    "name": "ivnish",
                    "homepage": "https://www.drupal.org/user/3547706"
                },
                {
                    "name": "jrockowitz",
                    "homepage": "https://www.drupal.org/user/371407"
                },
                {
                    "name": "lauriii",
                    "homepage": "https://www.drupal.org/user/1078742"
                },
                {
                    "name": "nod_",
                    "homepage": "https://www.drupal.org/user/598310"
                },
                {
                    "name": "phenaproxima",
                    "homepage": "https://www.drupal.org/user/205645"
                },
                {
                    "name": "zrpnr",
                    "homepage": "https://www.drupal.org/user/1448368"
                }
            ],
            "description": "Provides jQuery UI Datepicker library.",
            "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
            "support": {
                "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
            }
        },
        {
            "name": "drupal/jquery_ui_draggable",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
            },
            "require": {
                "drupal/core": "^9.2 || ^10",
                "drupal/jquery_ui": "^1.6"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1670871516",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bnjmnm",
                    "homepage": "https://www.drupal.org/user/2369194"
                },
                {
                    "name": "lauriii",
                    "homepage": "https://www.drupal.org/user/1078742"
                },
                {
                    "name": "zrpnr",
                    "homepage": "https://www.drupal.org/user/1448368"
                }
            ],
            "description": "Provides jQuery UI Draggable library.",
            "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
            "support": {
                "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
            }
        },
        {
            "name": "drupal/jquery_ui_slider",
            "version": "2.0.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
                "reference": "2.0.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
                "reference": "2.0.0",
                "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
            },
            "require": {
                "drupal/core": "^9.2 || ^10",
                "drupal/jquery_ui": "^1.6"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.0",
                    "datestamp": "1670871571",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bnjmnm",
                    "homepage": "https://www.drupal.org/user/2369194"
                },
                {
                    "name": "lauriii",
                    "homepage": "https://www.drupal.org/user/1078742"
                },
                {
                    "name": "zrpnr",
                    "homepage": "https://www.drupal.org/user/1448368"
                }
            ],
            "description": "Provides jQuery UI Slider library.",
            "homepage": "https://www.drupal.org/project/jquery_ui_slider",
            "support": {
                "source": "https://git.drupalcode.org/project/jquery_ui_slider"
            }
        },
        {
            "name": "drupal/jquery_ui_touch_punch",
            "version": "1.1.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
                "reference": "1.1.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
                "reference": "1.1.0",
                "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10",
                "drupal/jquery_ui": "^1.0",
                "politsin/jquery-ui-touch-punch": "^1.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "1.1.0",
                    "datestamp": "1662744607",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Naveen Valecha",
                    "homepage": "https://drupal.org/u/naveenvalecha",
                    "role": "Maintainer"
                },
                {
                    "name": "naveenvalecha",
                    "homepage": "https://www.drupal.org/user/2665733"
                }
            ],
            "description": "Provides jQuery UI Touch Punch library.",
            "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
            "keywords": [
                "Drupal",
                "jquery_ui_touch_punch"
            ],
            "support": {
                "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
                "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
            }
        },
        {
            "name": "drupal/key",
            "version": "1.17.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/key.git",
                "reference": "8.x-1.17"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/key-8.x-1.17.zip",
                "reference": "8.x-1.17",
                "shasum": "fa9f606d2ba0e20693e12040004e2ed31302ed03"
            },
            "require": {
                "drupal/core": ">=8.9 <11"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.17",
                    "datestamp": "1674343967",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": ">=9"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Cellar Door",
                    "homepage": "https://www.drupal.org/user/658076"
                },
                {
                    "name": "crashtest_",
                    "homepage": "https://www.drupal.org/user/261457"
                },
                {
                    "name": "nerdstein",
                    "homepage": "https://www.drupal.org/user/1557710"
                },
                {
                    "name": "rlhawk",
                    "homepage": "https://www.drupal.org/user/352283"
                }
            ],
            "description": "Provides the ability to manage site-wide keys",
            "homepage": "http://drupal.org/project/key",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/key",
                "issues": "http://drupal.org/project/key"
            }
        },
        {
            "name": "drupal/key_aws",
            "version": "1.0.1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/key_aws.git",
                "reference": "1.0.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/key_aws-1.0.1.zip",
                "reference": "1.0.1",
                "shasum": "a8d6d49d0bbb5f6c79faefcdd9875c9bfb893490"
            },
            "require": {
                "drupal/core": "^8.9 || ^9 || ^10",
                "drupal/key": "^1.16"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "1.0.1",
                    "datestamp": "1662075514",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "George Anderson (geoanders)",
                    "homepage": "https://www.drupal.org/u/geoanders",
                    "role": "Maintainer"
                }
            ],
            "description": "Provides key provider for AWS authentication.",
            "homepage": "https://drupal.org/project/key_aws",
            "keywords": [
                "AWS",
                "Amazon",
                "Authentication",
                "Drupal"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/key_aws",
                "issues": "https://www.drupal.org/project/issues/key_aws"
            }
        },
        {
            "name": "drupal/media_entity_soundcloud",
            "version": "3.1.1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/media_entity_soundcloud.git",
                "reference": "3.1.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/media_entity_soundcloud-3.1.1.zip",
                "reference": "3.1.1",
                "shasum": "565bba7f8505c5330f52abc147b48e2bedd4e988"
            },
            "require": {
                "drupal/core": "^9.3 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.1.1",
                    "datestamp": "1664452204",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "autoload": {
                "psr-4": {
                    "Drupal\\media_entity_soundcloud\\": "src/"
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "arshadcn",
                    "homepage": "https://www.drupal.org/user/571032"
                },
                {
                    "name": "dawehner",
                    "homepage": "https://www.drupal.org/user/99340"
                },
                {
                    "name": "jcisio",
                    "homepage": "https://www.drupal.org/user/210762"
                },
                {
                    "name": "Rajeshreeputra",
                    "homepage": "https://www.drupal.org/user/3418561"
                },
                {
                    "name": "shadcn",
                    "homepage": "https://www.drupal.org/user/571032"
                }
            ],
            "description": "Soundcloud integration for the Media Entity module",
            "homepage": "https://drupal.org/project/media_entity_soundcloud",
            "support": {
                "source": "https://git.drupalcode.org/project/media_entity_soundcloud",
                "issues": "https://drupal.org/project/issues/media_entity_soundcloud"
            }
        },
        {
            "name": "drupal/paragraphs",
            "version": "1.15.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/paragraphs.git",
                "reference": "8.x-1.15"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.15.zip",
                "reference": "8.x-1.15",
                "shasum": "2ed2d3199553010fa1c500181bbebe676e9e60c1"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "drupal/entity_reference_revisions": "~1.3"
            },
            "require-dev": {
                "drupal/block_field": "1.x-dev",
                "drupal/diff": "1.x-dev",
                "drupal/entity_browser": "2.x-dev",
                "drupal/entity_usage": "2.x-dev",
                "drupal/field_group": "3.x-dev",
                "drupal/inline_entity_form": "1.x-dev",
                "drupal/paragraphs-paragraphs_library": "*",
                "drupal/replicate": "1.x-dev",
                "drupal/search_api": "1.x-dev",
                "drupal/search_api_db": "*"
            },
            "suggest": {
                "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.15",
                    "datestamp": "1661440897",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "Frans",
                    "homepage": "https://www.drupal.org/user/514222"
                },
                {
                    "name": "jeroen.b",
                    "homepage": "https://www.drupal.org/user/1853532"
                },
                {
                    "name": "jstoller",
                    "homepage": "https://www.drupal.org/user/99012"
                },
                {
                    "name": "miro_dietiker",
                    "homepage": "https://www.drupal.org/user/227761"
                },
                {
                    "name": "Primsi",
                    "homepage": "https://www.drupal.org/user/282629"
                }
            ],
            "description": "Enables the creation of Paragraphs entities.",
            "homepage": "https://www.drupal.org/project/paragraphs",
            "support": {
                "source": "https://git.drupalcode.org/project/paragraphs"
            }
        },
        {
            "name": "drupal/pathauto",
            "version": "1.11.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/pathauto.git",
                "reference": "8.x-1.11"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.11.zip",
                "reference": "8.x-1.11",
                "shasum": "a006fe9e6046a9833711a1ae56aa4752e65bcdc8"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "drupal/ctools": "*",
                "drupal/token": "*"
            },
            "suggest": {
                "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.11",
                    "datestamp": "1660129564",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "Dave Reid",
                    "homepage": "https://www.drupal.org/user/53892"
                },
                {
                    "name": "Freso",
                    "homepage": "https://www.drupal.org/user/27504"
                },
                {
                    "name": "greggles",
                    "homepage": "https://www.drupal.org/user/36762"
                }
            ],
            "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
            "homepage": "https://www.drupal.org/project/pathauto",
            "support": {
                "source": "https://cgit.drupalcode.org/pathauto",
                "issues": "https://www.drupal.org/project/issues/pathauto",
                "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
            }
        },
        {
            "name": "drupal/physical",
            "version": "1.3.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/physical.git",
                "reference": "8.x-1.3"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/physical-8.x-1.3.zip",
                "reference": "8.x-1.3",
                "shasum": "b5bbb81eda82babda21b50030da4894f623a419c"
            },
            "require": {
                "drupal/core": "^9 || ^10",
                "php": "^8.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.3",
                    "datestamp": "1680175173",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Centarro",
                    "homepage": "https://www.drupal.org/user/3661446"
                },
                {
                    "name": "czigor",
                    "homepage": "https://www.drupal.org/user/826222"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "rszrama",
                    "homepage": "https://www.drupal.org/user/49344"
                }
            ],
            "description": "Physical supplies such fields as physical weight and dimensions.",
            "homepage": "https://drupal.org/project/physical",
            "support": {
                "source": "https://git.drupalcode.org/project/physical"
            }
        },
        {
            "name": "drupal/profile",
            "version": "1.7.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/profile.git",
                "reference": "8.x-1.7"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
                "reference": "8.x-1.7",
                "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
            },
            "require": {
                "drupal/core": "^9 || ^10",
                "drupal/entity": "^1.0"
            },
            "require-dev": {
                "drupal/token": "^1.7"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.7",
                    "datestamp": "1665131792",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "daggerhart",
                    "homepage": "https://www.drupal.org/user/167806"
                },
                {
                    "name": "fago",
                    "homepage": "https://www.drupal.org/user/16747"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "mglaman",
                    "homepage": "https://www.drupal.org/user/2416470"
                },
                {
                    "name": "pcambra",
                    "homepage": "https://www.drupal.org/user/122101"
                }
            ],
            "description": "Provides configurable user profiles.",
            "homepage": "https://drupal.org/project/profile",
            "support": {
                "source": "https://git.drupalcode.org/project/profile"
            }
        },
        {
            "name": "drupal/quick_node_clone",
            "version": "1.16.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/quick_node_clone.git",
                "reference": "8.x-1.16"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/quick_node_clone-8.x-1.16.zip",
                "reference": "8.x-1.16",
                "shasum": "44cc517788cf2d9613fd2070b1aa9e62627c5e1c"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10"
            },
            "require-dev": {
                "drupal/paragraphs": "1.x-dev"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.16",
                    "datestamp": "1678754974",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "vilepickle",
                    "homepage": "https://www.drupal.org/u/vilepickle",
                    "role": "Maintainer"
                },
                {
                    "name": "Neslee Canil Pinto",
                    "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
                    "role": "Maintainer"
                }
            ],
            "description": "Quickly clone a node with regular fields.",
            "homepage": "https://www.drupal.org/project/quick_node_clone",
            "support": {
                "source": "https://git.drupalcode.org/project/quick_node_clone",
                "issues": "https://www.drupal.org/project/issues/quick_node_clone"
            }
        },
        {
            "name": "drupal/redirect",
            "version": "1.8.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/redirect.git",
                "reference": "8.x-1.8"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.8.zip",
                "reference": "8.x-1.8",
                "shasum": "a7a440423434472ff7115ae69df01553f763f839"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.8",
                    "datestamp": "1661806955",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "Dave Reid",
                    "homepage": "https://www.drupal.org/user/53892"
                },
                {
                    "name": "pifagor",
                    "homepage": "https://www.drupal.org/user/2375692"
                }
            ],
            "description": "Allows users to redirect from old URLs to new URLs.",
            "homepage": "https://www.drupal.org/project/redirect",
            "support": {
                "source": "https://git.drupalcode.org/project/redirect"
            }
        },
        {
            "name": "drupal/search_api",
            "version": "1.29.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/search_api.git",
                "reference": "8.x-1.29"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.29.zip",
                "reference": "8.x-1.29",
                "shasum": "4663abbcfe5dfc159ee0886fc6c437e998fc0653"
            },
            "require": {
                "drupal/core": "^9.3 || ^10.0"
            },
            "conflict": {
                "drupal/search_api_solr": "2.* || 3.0 || 3.1"
            },
            "require-dev": {
                "drupal/language_fallback_fix": "@dev",
                "drupal/search_api_autocomplete": "@dev",
                "drupal/search_api_db": "*"
            },
            "suggest": {
                "drupal/facets": "Adds the ability to create faceted searches.",
                "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
                "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.29",
                    "datestamp": "1679910252",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Thomas Seidl",
                    "homepage": "https://www.drupal.org/u/drunken-monkey"
                },
                {
                    "name": "Nick Veenhof",
                    "homepage": "https://www.drupal.org/u/nick_vh"
                },
                {
                    "name": "See other contributors",
                    "homepage": "https://www.drupal.org/node/790418/committers"
                }
            ],
            "description": "Provides a generic framework for modules offering search capabilities.",
            "homepage": "https://www.drupal.org/project/search_api",
            "support": {
                "source": "https://git.drupalcode.org/project/search_api",
                "issues": "https://www.drupal.org/project/issues/search_api",
                "irc": "irc://irc.freenode.org/drupal-search-api"
            }
        },
        {
            "name": "drupal/selective_better_exposed_filters",
            "version": "3.0.0-beta1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/selective_better_exposed_filters.git",
                "reference": "3.0.0-beta1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/selective_better_exposed_filters-3.0.0-beta1.zip",
                "reference": "3.0.0-beta1",
                "shasum": "8aa0be38f499a9b2e55aec7aacba9a7e92199ecf"
            },
            "require": {
                "drupal/better_exposed_filters": "^4.0 || ^5.0 || ^6.0",
                "drupal/core": "^8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.0.0-beta1",
                    "datestamp": "1671917757",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Beta releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "stomusic",
                    "homepage": "https://www.drupal.org/user/3405436"
                }
            ],
            "description": "Provide extra option for better exposed filters to show only used terms in filter.",
            "homepage": "https://www.drupal.org/project/selective_better_exposed_filters",
            "keywords": [
                "Drupal"
            ],
            "support": {
                "source": "http://cgit.drupalcode.org/selective_better_exposed_filters",
                "issues": "https://www.drupal.org/project/issues/selective_better_exposed_filters"
            }
        },
        {
            "name": "drupal/simple_sitemap",
            "version": "4.1.6",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/simple_sitemap.git",
                "reference": "4.1.6"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.1.6.zip",
                "reference": "4.1.6",
                "shasum": "5ea5ee97ab4d59b43db86dd6279c3ac5ecbe69b9"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "ext-xmlwriter": "*"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "4.1.6",
                    "datestamp": "1686288643",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": ">=9"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Pawel Ginalski (gbyte)",
                    "homepage": "https://www.drupal.org/u/gbyte",
                    "email": "contact@gbyte.dev",
                    "role": "Maintainer"
                },
                {
                    "name": "WalkingDexter",
                    "homepage": "https://www.drupal.org/user/3251330"
                }
            ],
            "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
            "homepage": "https://drupal.org/project/simple_sitemap",
            "support": {
                "source": "https://cgit.drupalcode.org/simple_sitemap",
                "issues": "https://drupal.org/project/issues/simple_sitemap"
            }
        },
        {
            "name": "drupal/smart_trim",
            "version": "2.1.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/smart_trim.git",
                "reference": "2.1.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
                "reference": "2.1.0",
                "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10",
                "drupal/token": "^1.0",
                "php": ">=7.4.0"
            },
            "require-dev": {
                "drupal/token_filter": "^2.0"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.1.0",
                    "datestamp": "1686152417",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Mark Casias (markie)",
                    "homepage": "https://www.drupal.org/u/markie",
                    "role": "Maintainer"
                },
                {
                    "name": "AmyJune Hineline (volkswagenchick)",
                    "homepage": "https://www.drupal.org/u/volkswagenchick",
                    "role": "Maintainer"
                },
                {
                    "name": "Michael Anello (ultimike)",
                    "homepage": "https://www.drupal.org/u/ultimike",
                    "role": "Maintainer"
                }
            ],
            "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
            "homepage": "https://drupal.org/project/smart_trim",
            "support": {
                "source": "https://git.drupalcode.org/project/smart_trim",
                "issues": "https://drupal.org/project/issues/smart_trim"
            }
        },
        {
            "name": "drupal/smtp",
            "version": "1.2.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/smtp.git",
                "reference": "8.x-1.2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
                "reference": "8.x-1.2",
                "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
            },
            "require": {
                "drupal/core": ">=8.9 <11",
                "phpmailer/phpmailer": "^6.1.7"
            },
            "suggest": {
                "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.2",
                    "datestamp": "1667416337",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "branch-alias": {
                    "dev-8.x-1.x": "1.x-dev"
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "japerry",
                    "homepage": "https://www.drupal.org/user/45640"
                },
                {
                    "name": "joseph.olstad",
                    "homepage": "https://www.drupal.org/user/1321830"
                },
                {
                    "name": "josesanmartin",
                    "homepage": "https://www.drupal.org/user/72012"
                },
                {
                    "name": "LukeLast",
                    "homepage": "https://www.drupal.org/user/30151"
                },
                {
                    "name": "oadaeh",
                    "homepage": "https://www.drupal.org/user/4649"
                },
                {
                    "name": "sadashiv",
                    "homepage": "https://www.drupal.org/user/1773304"
                },
                {
                    "name": "wundo",
                    "homepage": "https://www.drupal.org/user/25523"
                },
                {
                    "name": "yettyn",
                    "homepage": "https://www.drupal.org/user/93281"
                }
            ],
            "description": "Allow for site emails to be sent through an SMTP server of your choice.",
            "homepage": "https://www.drupal.org/project/smtp",
            "support": {
                "source": "https://git.drupalcode.org/project/smtp",
                "issues": "https://www.drupal.org/project/issues/smtp"
            }
        },
        {
            "name": "drupal/state_machine",
            "version": "1.8.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/state_machine.git",
                "reference": "8.x-1.8"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/state_machine-8.x-1.8.zip",
                "reference": "8.x-1.8",
                "shasum": "dd59939a0f91f413c4f98e3f2966f8ea7a4a74ee"
            },
            "require": {
                "drupal/core": "^9.2 || ^10",
                "php": ">=7.0.8"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.8",
                    "datestamp": "1684226801",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "arithmetric",
                    "homepage": "https://www.drupal.org/user/162305"
                },
                {
                    "name": "bojanz",
                    "homepage": "https://www.drupal.org/user/86106"
                },
                {
                    "name": "Brandonian",
                    "homepage": "https://www.drupal.org/user/77766"
                },
                {
                    "name": "das-peter",
                    "homepage": "https://www.drupal.org/user/762870"
                },
                {
                    "name": "e2thex",
                    "homepage": "https://www.drupal.org/user/189123"
                },
                {
                    "name": "Elijah Lynn",
                    "homepage": "https://www.drupal.org/user/353190"
                },
                {
                    "name": "ericduran",
                    "homepage": "https://www.drupal.org/user/244460"
                },
                {
                    "name": "fmitchell",
                    "homepage": "https://www.drupal.org/user/213574"
                },
                {
                    "name": "indytechcook",
                    "homepage": "https://www.drupal.org/user/245817"
                },
                {
                    "name": "jsacksick",
                    "homepage": "https://www.drupal.org/user/972218"
                },
                {
                    "name": "robeano",
                    "homepage": "https://www.drupal.org/user/67660"
                },
                {
                    "name": "stevector",
                    "homepage": "https://www.drupal.org/user/179805"
                },
                {
                    "name": "timcosgrove",
                    "homepage": "https://www.drupal.org/user/118452"
                },
                {
                    "name": "zroger",
                    "homepage": "https://www.drupal.org/user/67977"
                }
            ],
            "description": "Provides code-driven workflow functionality.",
            "homepage": "http://drupal.org/project/state_machine",
            "support": {
                "source": "https://git.drupalcode.org/project/state_machine"
            }
        },
        {
            "name": "drupal/svg_image_field",
            "version": "2.2.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/svg_image_field.git",
                "reference": "2.2.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/svg_image_field-2.2.0.zip",
                "reference": "2.2.0",
                "shasum": "f54fd34dec47bdce4600d824b52b4bd788cfb8ce"
            },
            "require": {
                "drupal/core": "^9.3 || ^10",
                "enshrined/svg-sanitize": "~0.15"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.2.0",
                    "datestamp": "1676832585",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "See contributors",
                    "homepage": "https://www.drupal.org/node/2863622/committers"
                },
                {
                    "name": "dunot",
                    "homepage": "https://www.drupal.org/user/3562626"
                },
                {
                    "name": "jwilson3",
                    "homepage": "https://www.drupal.org/user/220177"
                },
                {
                    "name": "mandclu",
                    "homepage": "https://www.drupal.org/user/52136"
                },
                {
                    "name": "romychvk",
                    "homepage": "https://www.drupal.org/user/361734"
                },
                {
                    "name": "shmel210",
                    "homepage": "https://www.drupal.org/user/2600028"
                }
            ],
            "description": "Provides SVG Image field.",
            "homepage": "https://www.drupal.org/project/svg_image_field",
            "support": {
                "source": "https://git.drupalcode.org/project/svg_image_field",
                "issues": "https://www.drupal.org/project/issues/svg_image_field"
            }
        },
        {
            "name": "drupal/time_field",
            "version": "2.1.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/time_field.git",
                "reference": "2.1.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/time_field-2.1.0.zip",
                "reference": "2.1.0",
                "shasum": "5d6668a9deb3e0cd9223796a04b0c87a6272c918"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.1.0",
                    "datestamp": "1665151948",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "BramDriesen",
                    "homepage": "https://www.drupal.org/user/3383264"
                },
                {
                    "name": "lostkoder",
                    "homepage": "https://www.drupal.org/user/3545132"
                }
            ],
            "description": "Provides 'Time Field' and 'Time Range Field'.",
            "homepage": "https://www.drupal.org/project/time_field",
            "support": {
                "source": "http://git.drupal.org/project/time_field.git",
                "issues": "https://www.drupal.org/project/issues/time_field"
            }
        },
        {
            "name": "drupal/token",
            "version": "1.12.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/token.git",
                "reference": "8.x-1.12"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/token-8.x-1.12.zip",
                "reference": "8.x-1.12",
                "shasum": "cefe1b203b793682f74ea43e18d0a814cf768763"
            },
            "require": {
                "drupal/core": "^9.2 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.12",
                    "datestamp": "1688015262",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Berdir",
                    "homepage": "https://www.drupal.org/user/214652"
                },
                {
                    "name": "Dave Reid",
                    "homepage": "https://www.drupal.org/user/53892"
                },
                {
                    "name": "eaton",
                    "homepage": "https://www.drupal.org/user/16496"
                },
                {
                    "name": "fago",
                    "homepage": "https://www.drupal.org/user/16747"
                },
                {
                    "name": "greggles",
                    "homepage": "https://www.drupal.org/user/36762"
                },
                {
                    "name": "mikeryan",
                    "homepage": "https://www.drupal.org/user/4420"
                }
            ],
            "description": "Provides a user interface for the Token API, some missing core tokens.",
            "homepage": "https://www.drupal.org/project/token",
            "support": {
                "source": "https://git.drupalcode.org/project/token"
            }
        },
        {
            "name": "drupal/twig_field_value",
            "version": "2.0.2",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/twig_field_value.git",
                "reference": "2.0.2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/twig_field_value-2.0.2.zip",
                "reference": "2.0.2",
                "shasum": "7d1267c6ed5ef0e5d6ab82732e42bc505bb2dec8"
            },
            "require": {
                "drupal/core": "^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "2.0.2",
                    "datestamp": "1671703066",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "bizar1984",
                    "homepage": "https://www.drupal.org/user/3719064"
                },
                {
                    "name": "Gerben Spil",
                    "homepage": "https://www.drupal.org/user/728030"
                },
                {
                    "name": "Sutharsan",
                    "homepage": "https://www.drupal.org/user/73854"
                }
            ],
            "description": "Twig filters for value(s) and label.",
            "homepage": "https://www.drupal.org/project/twig_field_value",
            "support": {
                "source": "https://git.drupalcode.org/project/twig_field_value"
            }
        },
        {
            "name": "drupal/twig_tweak",
            "version": "3.2.1",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/twig_tweak.git",
                "reference": "3.2.1"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.2.1.zip",
                "reference": "3.2.1",
                "shasum": "89fc08b60f494a7d786251b6c2c493c536218222"
            },
            "require": {
                "drupal/core": "^9.3 || ^10.0",
                "ext-json": "*",
                "php": ">=7.3",
                "symfony/polyfill-php80": "^1.17",
                "twig/twig": "^2.12 || ^3.3.8"
            },
            "suggest": {
                "symfony/var-dumper": "Better dump() function for debugging Twig variables"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.2.1",
                    "datestamp": "1677404306",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^9 || ^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Chi",
                    "homepage": "https://www.drupal.org/user/556138"
                }
            ],
            "description": "A Twig extension with some useful functions and filters for Drupal development.",
            "homepage": "https://www.drupal.org/project/twig_tweak",
            "keywords": [
                "Drupal",
                "Twig"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/twig_tweak",
                "issues": "https://www.drupal.org/project/issues/twig_tweak"
            }
        },
        {
            "name": "drupal/twig_vardumper",
            "version": "3.1.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/twig_vardumper.git",
                "reference": "3.1.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/twig_vardumper-3.1.0.zip",
                "reference": "3.1.0",
                "shasum": "f573450d1792967cf2cea831b9a47b49f53a4162"
            },
            "require": {
                "drupal/core": "^9 || ^10",
                "symfony/var-dumper": "^6|^5"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "3.1.0",
                    "datestamp": "1663153696",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "Ruben Egiguren a.k.a keopx",
                    "homepage": "https://www.drupal.org/user/377362",
                    "email": "keopx@keopx.net"
                }
            ],
            "description": "Twig vardumper provides a better dump() and vardumper() function that can help you debug Twig variables.",
            "homepage": "https://www.drupal.org/project/twig_vardumper",
            "keywords": [
                "Development",
                "Drupal",
                "Twig"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/twig_vardumper",
                "issues": "https://www.drupal.org/project/issues/twig_vardumper"
            }
        },
        {
            "name": "drupal/twigsuggest",
            "version": "1.0.0-rc2",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/twigsuggest.git",
                "reference": "8.x-1.0-rc2"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/twigsuggest-8.x-1.0-rc2.zip",
                "reference": "8.x-1.0-rc2",
                "shasum": "69d765e40b9eb2e423d63378c69acf8a0248bffb"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.0-rc2",
                    "datestamp": "1682360823",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "RC releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0+"
            ],
            "authors": [
                {
                    "name": "beunerd",
                    "homepage": "https://www.drupal.org/user/1312798"
                },
                {
                    "name": "leymannx",
                    "homepage": "https://www.drupal.org/user/2482808"
                },
                {
                    "name": "MegaKeegMan",
                    "homepage": "https://www.drupal.org/user/3620027"
                },
                {
                    "name": "mlncn",
                    "homepage": "https://www.drupal.org/user/64383"
                }
            ],
            "description": "Provides template suggestions for things Drupal doesn't.",
            "homepage": "https://www.drupal.org/project/twigsuggest",
            "keywords": [
                "drupal",
                "styling",
                "template suggestions",
                "templates",
                "theming"
            ],
            "support": {
                "source": "https://git.drupalcode.org/project/twigsuggest.git",
                "issues": "https://www.drupal.org/project/issues/twigsuggest"
            }
        },
        {
            "name": "drupal/tzfield",
            "version": "1.7.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/tzfield.git",
                "reference": "8.x-1.7"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/tzfield-8.x-1.7.zip",
                "reference": "8.x-1.7",
                "shasum": "12f6a0ee4a73755ce4735d0301a8af2179f1dba5"
            },
            "require": {
                "drupal/core": "^8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.7",
                    "datestamp": "1673516096",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "k_zoltan",
                    "homepage": "https://www.drupal.org/user/834136"
                },
                {
                    "name": "mfb",
                    "homepage": "https://www.drupal.org/user/12302"
                }
            ],
            "description": "Defines a time zone field type.",
            "homepage": "https://www.drupal.org/project/tzfield",
            "support": {
                "source": "https://git.drupalcode.org/project/tzfield"
            }
        },
        {
            "name": "drupal/uswds_base",
            "version": "3.3.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/uswds_base.git",
                "reference": "3.3.0"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/uswds_base-3.3.0.zip",
                "reference": "3.3.0",
                "shasum": "294b03826ccb6e0c022b35148dcb8127b672d3d8"
            },
            "require": {
                "drupal/core": "^9 || ^10"
            },
            "type": "drupal-theme",
            "extra": {
                "drupal": {
                    "version": "3.3.0",
                    "datestamp": "1679447868",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "mferanda",
                    "homepage": "https://www.drupal.org/user/3541484"
                }
            ],
            "description": "Drupal USWDS Base Theme - The U.S. Web Design System provides design guidelines and code to help you quickly create trustworthy, accessible, and consistent digital government services.",
            "homepage": "https://www.drupal.org/project/uswds_base",
            "support": {
                "source": "https://git.drupalcode.org/project/uswds_base"
            }
        },
        {
            "name": "drupal/uswds_ckeditor_integration",
            "version": "dev-2.0.x",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/uswds_ckeditor_integration.git",
                "reference": "c08f6c49b1bbdb44d4705c45b77e77a9a48c2caf"
            },
            "require": {
                "drupal/ckeditor5_embedded_content": "*",
                "drupal/core": "^9 || ^10"
            },
            "require-dev": {
                "drupal/paragraphs_entity_embed": "*",
                "drupal/uswds_paragraph_components": "*"
            },
            "type": "drupal-module",
            "extra": {
                "branch-alias": {
                    "dev-2.0.x": "2.0.x-dev"
                },
                "drupal": {
                    "version": "2.0.0-alpha2+3-dev",
                    "datestamp": "1677169854",
                    "security-coverage": {
                        "status": "not-covered",
                        "message": "Dev releases are not covered by Drupal security advisories."
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "smustgrave",
                    "homepage": "https://www.drupal.org/user/3252890"
                }
            ],
            "description": "Helps integrate some USWDS components into ckeditor5",
            "homepage": "https://www.drupal.org/project/uswds_ckeditor_integration",
            "support": {
                "source": "https://git.drupalcode.org/project/uswds_ckeditor_integration",
                "error": "require.drupal/ckeditor5_embedded_content : invalid version constraint (Could not parse version constraint ^^1.0: Invalid version string \"^^1.0\")"
            }
        },
        {
            "name": "drupal/views_ajax_history",
            "version": "1.7.0",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/views_ajax_history.git",
                "reference": "8.x-1.7"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/views_ajax_history-8.x-1.7.zip",
                "reference": "8.x-1.7",
                "shasum": "bedc26b91131968660ebf68c7c050821b9434e10"
            },
            "require": {
                "drupal/core": "^8.8 || ^9 || ^10"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "8.x-1.7",
                    "datestamp": "1671526718",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "amateescu",
                    "homepage": "https://www.drupal.org/user/729614"
                },
                {
                    "name": "joelpittet",
                    "homepage": "https://www.drupal.org/user/160302"
                },
                {
                    "name": "kalman.hosszu",
                    "homepage": "https://www.drupal.org/user/267481"
                },
                {
                    "name": "nod_",
                    "homepage": "https://www.drupal.org/user/598310"
                }
            ],
            "description": "Add bookmarking abilities to AJAX Views.",
            "homepage": "https://www.drupal.org/project/views_ajax_history",
            "support": {
                "source": "https://git.drupalcode.org/project/views_ajax_history"
            }
        },
        {
            "name": "drupal/views_bulk_operations",
            "version": "4.2.4",
            "source": {
                "type": "git",
                "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
                "reference": "4.2.4"
            },
            "dist": {
                "type": "zip",
                "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.4.zip",
                "reference": "4.2.4",
                "shasum": "26f1dea73780fab2e338380ae803feca989172e1"
            },
            "require": {
                "drupal/core": "^9.4 || ^10",
                "php": ">=7.4.0"
            },
            "require-dev": {
                "drush/drush": "^11"
            },
            "suggest": {
                "drush/drush": "^10 || ^11"
            },
            "type": "drupal-module",
            "extra": {
                "drupal": {
                    "version": "4.2.4",
                    "datestamp": "1685368786",
                    "security-coverage": {
                        "status": "covered",
                        "message": "Covered by Drupal's security advisory policy"
                    }
                },
                "drush": {
                    "services": {
                        "drush.services.yml": "^10 || ^11"
                    }
                }
            },
            "notification-url": "https://packages.drupal.org/8/downloads",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Marcin Grabias",
                    "homepage": "https://www.drupal.org/u/graber"
                },
                {
                    "name": "Graber",
                    "homepage": "https://www.drupal.org/user/1599440"
                },
                {
                    "name": "joelpittet",
                    "homepage": "https://www.drupal.org/user/160302"
                }
            ],
            "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
            "homepage": "https://www.drupal.org/project/views_bulk_operations",
            "support": {
                "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
                "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
                "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
            }
        },
        {
            "name": "drush/drush",
            "version": "11.4.0",
            "source": {
                "type": "git",
                "url": "https://github.com/drush-ops/drush.git",
                "reference": "d1f7809ceaf580c9e0bf4725e005975956af5629"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/drush-ops/drush/zipball/d1f7809ceaf580c9e0bf4725e005975956af5629",
                "reference": "d1f7809ceaf580c9e0bf4725e005975956af5629",
                "shasum": ""
            },
            "require": {
                "chi-teck/drupal-code-generator": "^2.4",
                "composer/semver": "^1.4 || ^3",
                "consolidation/annotated-command": "^4.7.0",
                "consolidation/config": "^2",
                "consolidation/filter-via-dot-access-data": "^2",
                "consolidation/robo": "^3.0.9 || ^4.0.1",
                "consolidation/site-alias": "^3.1.6 || ^4",
                "consolidation/site-process": "^4.1.3 || ^5",
                "enlightn/security-checker": "^1",
                "ext-dom": "*",
                "guzzlehttp/guzzle": "^6.5 || ^7.0",
                "league/container": "^3.4 || ^4",
                "php": ">=7.4",
                "psy/psysh": "~0.11",
                "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
                "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
                "symfony/finder": "^4.0 || ^5 || ^6",
                "symfony/polyfill-php80": "^1.23",
                "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
                "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
                "webflo/drupal-finder": "^1.2"
            },
            "conflict": {
                "drupal/core": "< 9.2",
                "drupal/migrate_run": "*",
                "drupal/migrate_tools": "<= 5"
            },
            "require-dev": {
                "composer/installers": "^1.7",
                "cweagans/composer-patches": "~1.0",
                "david-garcia/phpwhois": "4.3.0",
                "drupal/core-recommended": "^9 || ^10",
                "drupal/semver_example": "2.3.0",
                "phpunit/phpunit": ">=7.5.20",
                "rector/rector": "^0.12",
                "squizlabs/php_codesniffer": "^3.6",
                "vlucas/phpdotenv": "^2.4",
                "yoast/phpunit-polyfills": "^0.2.0"
            },
            "bin": [
                "drush"
            ],
            "type": "library",
            "extra": {
                "installer-paths": {
                    "sut/core": [
                        "type:drupal-core"
                    ],
                    "sut/libraries/{$name}": [
                        "type:drupal-library"
                    ],
                    "sut/modules/unish/{$name}": [
                        "drupal/devel"
                    ],
                    "sut/themes/unish/{$name}": [
                        "drupal/empty_theme"
                    ],
                    "sut/modules/contrib/{$name}": [
                        "type:drupal-module"
                    ],
                    "sut/profiles/contrib/{$name}": [
                        "type:drupal-profile"
                    ],
                    "sut/themes/contrib/{$name}": [
                        "type:drupal-theme"
                    ],
                    "sut/drush/contrib/{$name}": [
                        "type:drupal-drush"
                    ]
                }
            },
            "autoload": {
                "psr-4": {
                    "Drush\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Moshe Weitzman",
                    "email": "weitzman@tejasa.com"
                },
                {
                    "name": "Owen Barton",
                    "email": "drupal@owenbarton.com"
                },
                {
                    "name": "Greg Anderson",
                    "email": "greg.1.anderson@greenknowe.org"
                },
                {
                    "name": "Jonathan Araña Cruz",
                    "email": "jonhattan@faita.net"
                },
                {
                    "name": "Jonathan Hedstrom",
                    "email": "jhedstrom@gmail.com"
                },
                {
                    "name": "Christopher Gervais",
                    "email": "chris@ergonlogic.com"
                },
                {
                    "name": "Dave Reid",
                    "email": "dave@davereid.net"
                },
                {
                    "name": "Damian Lee",
                    "email": "damiankloip@googlemail.com"
                }
            ],
            "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
            "homepage": "http://www.drush.org",
            "support": {
                "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
                "issues": "https://github.com/drush-ops/drush/issues",
                "slack": "https://drupal.slack.com/messages/C62H9CWQM",
                "source": "https://github.com/drush-ops/drush/tree/11.4.0"
            },
            "funding": [
                {
                    "url": "https://github.com/weitzman",
                    "type": "github"
                }
            ],
            "time": "2022-12-14T16:02:30+00:00"
        },
        {
            "name": "egulias/email-validator",
            "version": "3.2.6",
            "source": {
                "type": "git",
                "url": "https://github.com/egulias/EmailValidator.git",
                "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
                "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
                "shasum": ""
            },
            "require": {
                "doctrine/lexer": "^1.2|^2",
                "php": ">=7.2",
                "symfony/polyfill-intl-idn": "^1.15"
            },
            "require-dev": {
                "phpunit/phpunit": "^8.5.8|^9.3.3",
                "vimeo/psalm": "^4"
            },
            "suggest": {
                "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Egulias\\EmailValidator\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Eduardo Gulias Davis"
                }
            ],
            "description": "A library for validating emails against several RFCs",
            "homepage": "https://github.com/egulias/EmailValidator",
            "keywords": [
                "email",
                "emailvalidation",
                "emailvalidator",
                "validation",
                "validator"
            ],
            "support": {
                "issues": "https://github.com/egulias/EmailValidator/issues",
                "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
            },
            "funding": [
                {
                    "url": "https://github.com/egulias",
                    "type": "github"
                }
            ],
            "time": "2023-06-01T07:04:22+00:00"
        },
        {
            "name": "enlightn/security-checker",
            "version": "v1.10.0",
            "source": {
                "type": "git",
                "url": "https://github.com/enlightn/security-checker.git",
                "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
                "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
                "shasum": ""
            },
            "require": {
                "ext-json": "*",
                "guzzlehttp/guzzle": "^6.3|^7.0",
                "php": ">=5.6",
                "symfony/console": "^3.4|^4|^5|^6",
                "symfony/finder": "^3|^4|^5|^6",
                "symfony/process": "^3.4|^4|^5|^6",
                "symfony/yaml": "^3.4|^4|^5|^6"
            },
            "require-dev": {
                "ext-zip": "*",
                "friendsofphp/php-cs-fixer": "^2.18|^3.0",
                "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
            },
            "bin": [
                "security-checker"
            ],
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Enlightn\\SecurityChecker\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Paras Malhotra",
                    "email": "paras@laravel-enlightn.com"
                },
                {
                    "name": "Miguel Piedrafita",
                    "email": "soy@miguelpiedrafita.com"
                }
            ],
            "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
            "keywords": [
                "package",
                "php",
                "scanner",
                "security",
                "security advisories",
                "vulnerability scanner"
            ],
            "support": {
                "issues": "https://github.com/enlightn/security-checker/issues",
                "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
            },
            "time": "2022-02-21T22:40:16+00:00"
        },
        {
            "name": "enshrined/svg-sanitize",
            "version": "0.16.0",
            "source": {
                "type": "git",
                "url": "https://github.com/darylldoyle/svg-sanitizer.git",
                "reference": "239e257605e2141265b429e40987b2ee51bba4b4"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/239e257605e2141265b429e40987b2ee51bba4b4",
                "reference": "239e257605e2141265b429e40987b2ee51bba4b4",
                "shasum": ""
            },
            "require": {
                "ext-dom": "*",
                "ext-libxml": "*",
                "ezyang/htmlpurifier": "^4.16",
                "php": "^5.6 || ^7.0 || ^8.0"
            },
            "require-dev": {
                "phpunit/phpunit": "^5.7 || ^6.5 || ^8.5"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "enshrined\\svgSanitize\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Daryll Doyle",
                    "email": "daryll@enshrined.co.uk"
                }
            ],
            "description": "An SVG sanitizer for PHP",
            "support": {
                "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
                "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.16.0"
            },
            "time": "2023-03-20T10:51:12+00:00"
        },
        {
            "name": "ezyang/htmlpurifier",
            "version": "v4.16.0",
            "source": {
                "type": "git",
                "url": "https://github.com/ezyang/htmlpurifier.git",
                "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
                "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
                "shasum": ""
            },
            "require": {
                "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
            },
            "require-dev": {
                "cerdic/css-tidy": "^1.7 || ^2.0",
                "simpletest/simpletest": "dev-master"
            },
            "suggest": {
                "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
                "ext-bcmath": "Used for unit conversion and imagecrash protection",
                "ext-iconv": "Converts text to and from non-UTF-8 encodings",
                "ext-tidy": "Used for pretty-printing HTML"
            },
            "type": "library",
            "autoload": {
                "files": [
                    "library/HTMLPurifier.composer.php"
                ],
                "psr-0": {
                    "HTMLPurifier": "library/"
                },
                "exclude-from-classmap": [
                    "/library/HTMLPurifier/Language/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "LGPL-2.1-or-later"
            ],
            "authors": [
                {
                    "name": "Edward Z. Yang",
                    "email": "admin@htmlpurifier.org",
                    "homepage": "http://ezyang.com"
                }
            ],
            "description": "Standards compliant HTML filter written in PHP",
            "homepage": "http://htmlpurifier.org/",
            "keywords": [
                "html"
            ],
            "support": {
                "issues": "https://github.com/ezyang/htmlpurifier/issues",
                "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
            },
            "time": "2022-09-18T07:06:19+00:00"
        },
        {
            "name": "grasmash/expander",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/grasmash/expander.git",
                "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
                "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
                "shasum": ""
            },
            "require": {
                "dflydev/dot-access-data": "^3.0.0",
                "php": ">=8.0",
                "psr/log": "^2 | ^3"
            },
            "require-dev": {
                "greg-1-anderson/composer-test-scenarios": "^1",
                "php-coveralls/php-coveralls": "^2.5",
                "phpunit/phpunit": "^9",
                "squizlabs/php_codesniffer": "^3.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Grasmash\\Expander\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Matthew Grasmick"
                }
            ],
            "description": "Expands internal property references in PHP arrays file.",
            "support": {
                "issues": "https://github.com/grasmash/expander/issues",
                "source": "https://github.com/grasmash/expander/tree/3.0.0"
            },
            "time": "2022-05-10T13:14:49+00:00"
        },
        {
            "name": "guzzlehttp/guzzle",
            "version": "7.5.3",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/guzzle.git",
                "reference": "584d1f06b5caa07b0587f5054d551ed65460ce5d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/584d1f06b5caa07b0587f5054d551ed65460ce5d",
                "reference": "584d1f06b5caa07b0587f5054d551ed65460ce5d",
                "shasum": ""
            },
            "require": {
                "ext-json": "*",
                "guzzlehttp/promises": "^1.5",
                "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
                "php": "^7.2.5 || ^8.0",
                "psr/http-client": "^1.0",
                "symfony/deprecation-contracts": "^2.2 || ^3.0"
            },
            "provide": {
                "psr/http-client-implementation": "1.0"
            },
            "require-dev": {
                "bamarni/composer-bin-plugin": "^1.8.1",
                "ext-curl": "*",
                "php-http/client-integration-tests": "^3.0",
                "phpunit/phpunit": "^8.5.29 || ^9.5.23",
                "psr/log": "^1.1 || ^2.0 || ^3.0"
            },
            "suggest": {
                "ext-curl": "Required for CURL handler support",
                "ext-intl": "Required for Internationalized Domain Name (IDN) support",
                "psr/log": "Required for using the Log middleware"
            },
            "type": "library",
            "extra": {
                "bamarni-bin": {
                    "bin-links": true,
                    "forward-command": false
                }
            },
            "autoload": {
                "files": [
                    "src/functions_include.php"
                ],
                "psr-4": {
                    "GuzzleHttp\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Graham Campbell",
                    "email": "hello@gjcampbell.co.uk",
                    "homepage": "https://github.com/GrahamCampbell"
                },
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                },
                {
                    "name": "Jeremy Lindblom",
                    "email": "jeremeamia@gmail.com",
                    "homepage": "https://github.com/jeremeamia"
                },
                {
                    "name": "George Mponos",
                    "email": "gmponos@gmail.com",
                    "homepage": "https://github.com/gmponos"
                },
                {
                    "name": "Tobias Nyholm",
                    "email": "tobias.nyholm@gmail.com",
                    "homepage": "https://github.com/Nyholm"
                },
                {
                    "name": "Márk Sági-Kazár",
                    "email": "mark.sagikazar@gmail.com",
                    "homepage": "https://github.com/sagikazarmark"
                },
                {
                    "name": "Tobias Schultze",
                    "email": "webmaster@tubo-world.de",
                    "homepage": "https://github.com/Tobion"
                }
            ],
            "description": "Guzzle is a PHP HTTP client library",
            "keywords": [
                "client",
                "curl",
                "framework",
                "http",
                "http client",
                "psr-18",
                "psr-7",
                "rest",
                "web service"
            ],
            "support": {
                "issues": "https://github.com/guzzle/guzzle/issues",
                "source": "https://github.com/guzzle/guzzle/tree/7.5.3"
            },
            "funding": [
                {
                    "url": "https://github.com/GrahamCampbell",
                    "type": "github"
                },
                {
                    "url": "https://github.com/Nyholm",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-15T20:42:18+00:00"
        },
        {
            "name": "guzzlehttp/promises",
            "version": "1.5.3",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/promises.git",
                "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
                "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
                "shasum": ""
            },
            "require": {
                "php": ">=5.5"
            },
            "require-dev": {
                "symfony/phpunit-bridge": "^4.4 || ^5.1"
            },
            "type": "library",
            "autoload": {
                "files": [
                    "src/functions_include.php"
                ],
                "psr-4": {
                    "GuzzleHttp\\Promise\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Graham Campbell",
                    "email": "hello@gjcampbell.co.uk",
                    "homepage": "https://github.com/GrahamCampbell"
                },
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                },
                {
                    "name": "Tobias Nyholm",
                    "email": "tobias.nyholm@gmail.com",
                    "homepage": "https://github.com/Nyholm"
                },
                {
                    "name": "Tobias Schultze",
                    "email": "webmaster@tubo-world.de",
                    "homepage": "https://github.com/Tobion"
                }
            ],
            "description": "Guzzle promises library",
            "keywords": [
                "promise"
            ],
            "support": {
                "issues": "https://github.com/guzzle/promises/issues",
                "source": "https://github.com/guzzle/promises/tree/1.5.3"
            },
            "funding": [
                {
                    "url": "https://github.com/GrahamCampbell",
                    "type": "github"
                },
                {
                    "url": "https://github.com/Nyholm",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-21T12:31:43+00:00"
        },
        {
            "name": "guzzlehttp/psr7",
            "version": "2.4.5",
            "source": {
                "type": "git",
                "url": "https://github.com/guzzle/psr7.git",
                "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/guzzle/psr7/zipball/0454e12ef0cd597ccd2adb036f7bda4e7fface66",
                "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66",
                "shasum": ""
            },
            "require": {
                "php": "^7.2.5 || ^8.0",
                "psr/http-factory": "^1.0",
                "psr/http-message": "^1.0",
                "ralouphie/getallheaders": "^3.0"
            },
            "provide": {
                "psr/http-factory-implementation": "1.0",
                "psr/http-message-implementation": "1.0"
            },
            "require-dev": {
                "bamarni/composer-bin-plugin": "^1.8.1",
                "http-interop/http-factory-tests": "^0.9",
                "phpunit/phpunit": "^8.5.29 || ^9.5.23"
            },
            "suggest": {
                "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
            },
            "type": "library",
            "extra": {
                "bamarni-bin": {
                    "bin-links": true,
                    "forward-command": false
                }
            },
            "autoload": {
                "psr-4": {
                    "GuzzleHttp\\Psr7\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Graham Campbell",
                    "email": "hello@gjcampbell.co.uk",
                    "homepage": "https://github.com/GrahamCampbell"
                },
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                },
                {
                    "name": "George Mponos",
                    "email": "gmponos@gmail.com",
                    "homepage": "https://github.com/gmponos"
                },
                {
                    "name": "Tobias Nyholm",
                    "email": "tobias.nyholm@gmail.com",
                    "homepage": "https://github.com/Nyholm"
                },
                {
                    "name": "Márk Sági-Kazár",
                    "email": "mark.sagikazar@gmail.com",
                    "homepage": "https://github.com/sagikazarmark"
                },
                {
                    "name": "Tobias Schultze",
                    "email": "webmaster@tubo-world.de",
                    "homepage": "https://github.com/Tobion"
                },
                {
                    "name": "Márk Sági-Kazár",
                    "email": "mark.sagikazar@gmail.com",
                    "homepage": "https://sagikazarmark.hu"
                }
            ],
            "description": "PSR-7 message implementation that also provides common utility methods",
            "keywords": [
                "http",
                "message",
                "psr-7",
                "request",
                "response",
                "stream",
                "uri",
                "url"
            ],
            "support": {
                "issues": "https://github.com/guzzle/psr7/issues",
                "source": "https://github.com/guzzle/psr7/tree/2.4.5"
            },
            "funding": [
                {
                    "url": "https://github.com/GrahamCampbell",
                    "type": "github"
                },
                {
                    "url": "https://github.com/Nyholm",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
                    "type": "tidelift"
                }
            ],
            "time": "2023-04-17T16:00:45+00:00"
        },
        {
            "name": "jackmoore/colorbox",
            "version": "1.6.4",
            "dist": {
                "type": "zip",
                "url": "https://github.com/jackmoore/colorbox/archive/1.6.4.zip"
            },
            "type": "drupal-library",
            "license": [
                "MIT"
            ]
        },
        {
            "name": "league/commonmark",
            "version": "2.4.0",
            "source": {
                "type": "git",
                "url": "https://github.com/thephpleague/commonmark.git",
                "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
                "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
                "shasum": ""
            },
            "require": {
                "ext-mbstring": "*",
                "league/config": "^1.1.1",
                "php": "^7.4 || ^8.0",
                "psr/event-dispatcher": "^1.0",
                "symfony/deprecation-contracts": "^2.1 || ^3.0",
                "symfony/polyfill-php80": "^1.16"
            },
            "require-dev": {
                "cebe/markdown": "^1.0",
                "commonmark/cmark": "0.30.0",
                "commonmark/commonmark.js": "0.30.0",
                "composer/package-versions-deprecated": "^1.8",
                "embed/embed": "^4.4",
                "erusev/parsedown": "^1.0",
                "ext-json": "*",
                "github/gfm": "0.29.0",
                "michelf/php-markdown": "^1.4 || ^2.0",
                "nyholm/psr7": "^1.5",
                "phpstan/phpstan": "^1.8.2",
                "phpunit/phpunit": "^9.5.21",
                "scrutinizer/ocular": "^1.8.1",
                "symfony/finder": "^5.3 | ^6.0",
                "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
                "unleashedtech/php-coding-standard": "^3.1.1",
                "vimeo/psalm": "^4.24.0 || ^5.0.0"
            },
            "suggest": {
                "symfony/yaml": "v2.3+ required if using the Front Matter extension"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.5-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "League\\CommonMark\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Colin O'Dell",
                    "email": "colinodell@gmail.com",
                    "homepage": "https://www.colinodell.com",
                    "role": "Lead Developer"
                }
            ],
            "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
            "homepage": "https://commonmark.thephpleague.com",
            "keywords": [
                "commonmark",
                "flavored",
                "gfm",
                "github",
                "github-flavored",
                "markdown",
                "md",
                "parser"
            ],
            "support": {
                "docs": "https://commonmark.thephpleague.com/",
                "forum": "https://github.com/thephpleague/commonmark/discussions",
                "issues": "https://github.com/thephpleague/commonmark/issues",
                "rss": "https://github.com/thephpleague/commonmark/releases.atom",
                "source": "https://github.com/thephpleague/commonmark"
            },
            "funding": [
                {
                    "url": "https://www.colinodell.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://www.paypal.me/colinpodell/10.00",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/colinodell",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-24T15:16:10+00:00"
        },
        {
            "name": "league/config",
            "version": "v1.2.0",
            "source": {
                "type": "git",
                "url": "https://github.com/thephpleague/config.git",
                "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
                "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
                "shasum": ""
            },
            "require": {
                "dflydev/dot-access-data": "^3.0.1",
                "nette/schema": "^1.2",
                "php": "^7.4 || ^8.0"
            },
            "require-dev": {
                "phpstan/phpstan": "^1.8.2",
                "phpunit/phpunit": "^9.5.5",
                "scrutinizer/ocular": "^1.8.1",
                "unleashedtech/php-coding-standard": "^3.1",
                "vimeo/psalm": "^4.7.3"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.2-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "League\\Config\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Colin O'Dell",
                    "email": "colinodell@gmail.com",
                    "homepage": "https://www.colinodell.com",
                    "role": "Lead Developer"
                }
            ],
            "description": "Define configuration arrays with strict schemas and access values with dot notation",
            "homepage": "https://config.thephpleague.com",
            "keywords": [
                "array",
                "config",
                "configuration",
                "dot",
                "dot-access",
                "nested",
                "schema"
            ],
            "support": {
                "docs": "https://config.thephpleague.com/",
                "issues": "https://github.com/thephpleague/config/issues",
                "rss": "https://github.com/thephpleague/config/releases.atom",
                "source": "https://github.com/thephpleague/config"
            },
            "funding": [
                {
                    "url": "https://www.colinodell.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://www.paypal.me/colinpodell/10.00",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/colinodell",
                    "type": "github"
                }
            ],
            "time": "2022-12-11T20:36:23+00:00"
        },
        {
            "name": "league/container",
            "version": "4.2.0",
            "source": {
                "type": "git",
                "url": "https://github.com/thephpleague/container.git",
                "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
                "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
                "shasum": ""
            },
            "require": {
                "php": "^7.2 || ^8.0",
                "psr/container": "^1.1 || ^2.0"
            },
            "provide": {
                "psr/container-implementation": "^1.0"
            },
            "replace": {
                "orno/di": "~2.0"
            },
            "require-dev": {
                "nette/php-generator": "^3.4",
                "nikic/php-parser": "^4.10",
                "phpstan/phpstan": "^0.12.47",
                "phpunit/phpunit": "^8.5.17",
                "roave/security-advisories": "dev-latest",
                "scrutinizer/ocular": "^1.8",
                "squizlabs/php_codesniffer": "^3.6"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "4.x-dev",
                    "dev-4.x": "4.x-dev",
                    "dev-3.x": "3.x-dev",
                    "dev-2.x": "2.x-dev",
                    "dev-1.x": "1.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "League\\Container\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Phil Bennett",
                    "email": "mail@philbennett.co.uk",
                    "role": "Developer"
                }
            ],
            "description": "A fast and intuitive dependency injection container.",
            "homepage": "https://github.com/thephpleague/container",
            "keywords": [
                "container",
                "dependency",
                "di",
                "injection",
                "league",
                "provider",
                "service"
            ],
            "support": {
                "issues": "https://github.com/thephpleague/container/issues",
                "source": "https://github.com/thephpleague/container/tree/4.2.0"
            },
            "funding": [
                {
                    "url": "https://github.com/philipobenito",
                    "type": "github"
                }
            ],
            "time": "2021-11-16T10:29:06+00:00"
        },
        {
            "name": "masterminds/html5",
            "version": "2.7.6",
            "source": {
                "type": "git",
                "url": "https://github.com/Masterminds/html5-php.git",
                "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
                "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
                "shasum": ""
            },
            "require": {
                "ext-ctype": "*",
                "ext-dom": "*",
                "ext-libxml": "*",
                "php": ">=5.3.0"
            },
            "require-dev": {
                "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.7-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Masterminds\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Matt Butcher",
                    "email": "technosophos@gmail.com"
                },
                {
                    "name": "Matt Farina",
                    "email": "matt@mattfarina.com"
                },
                {
                    "name": "Asmir Mustafic",
                    "email": "goetas@gmail.com"
                }
            ],
            "description": "An HTML5 parser and serializer.",
            "homepage": "http://masterminds.github.io/html5-php",
            "keywords": [
                "HTML5",
                "dom",
                "html",
                "parser",
                "querypath",
                "serializer",
                "xml"
            ],
            "support": {
                "issues": "https://github.com/Masterminds/html5-php/issues",
                "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
            },
            "time": "2022-08-18T16:18:26+00:00"
        },
        {
            "name": "mtdowling/jmespath.php",
            "version": "2.6.1",
            "source": {
                "type": "git",
                "url": "https://github.com/jmespath/jmespath.php.git",
                "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
                "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
                "shasum": ""
            },
            "require": {
                "php": "^5.4 || ^7.0 || ^8.0",
                "symfony/polyfill-mbstring": "^1.17"
            },
            "require-dev": {
                "composer/xdebug-handler": "^1.4 || ^2.0",
                "phpunit/phpunit": "^4.8.36 || ^7.5.15"
            },
            "bin": [
                "bin/jp.php"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.6-dev"
                }
            },
            "autoload": {
                "files": [
                    "src/JmesPath.php"
                ],
                "psr-4": {
                    "JmesPath\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Michael Dowling",
                    "email": "mtdowling@gmail.com",
                    "homepage": "https://github.com/mtdowling"
                }
            ],
            "description": "Declaratively specify how to extract elements from a JSON document",
            "keywords": [
                "json",
                "jsonpath"
            ],
            "support": {
                "issues": "https://github.com/jmespath/jmespath.php/issues",
                "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
            },
            "time": "2021-06-14T00:11:39+00:00"
        },
        {
            "name": "nette/schema",
            "version": "v1.2.3",
            "source": {
                "type": "git",
                "url": "https://github.com/nette/schema.git",
                "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
                "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
                "shasum": ""
            },
            "require": {
                "nette/utils": "^2.5.7 || ^3.1.5 ||  ^4.0",
                "php": ">=7.1 <8.3"
            },
            "require-dev": {
                "nette/tester": "^2.3 || ^2.4",
                "phpstan/phpstan-nette": "^1.0",
                "tracy/tracy": "^2.7"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.2-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause",
                "GPL-2.0-only",
                "GPL-3.0-only"
            ],
            "authors": [
                {
                    "name": "David Grudl",
                    "homepage": "https://davidgrudl.com"
                },
                {
                    "name": "Nette Community",
                    "homepage": "https://nette.org/contributors"
                }
            ],
            "description": "📐 Nette Schema: validating data structures against a given Schema.",
            "homepage": "https://nette.org",
            "keywords": [
                "config",
                "nette"
            ],
            "support": {
                "issues": "https://github.com/nette/schema/issues",
                "source": "https://github.com/nette/schema/tree/v1.2.3"
            },
            "time": "2022-10-13T01:24:26+00:00"
        },
        {
            "name": "nette/utils",
            "version": "v4.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/nette/utils.git",
                "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
                "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0 <8.3"
            },
            "conflict": {
                "nette/finder": "<3",
                "nette/schema": "<1.2.2"
            },
            "require-dev": {
                "jetbrains/phpstorm-attributes": "dev-master",
                "nette/tester": "^2.4",
                "phpstan/phpstan": "^1.0",
                "tracy/tracy": "^2.9"
            },
            "suggest": {
                "ext-gd": "to use Image",
                "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
                "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
                "ext-json": "to use Nette\\Utils\\Json",
                "ext-mbstring": "to use Strings::lower() etc...",
                "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
                "ext-xml": "to use Strings::length() etc. when mbstring is not available"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "4.0-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "src/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause",
                "GPL-2.0-only",
                "GPL-3.0-only"
            ],
            "authors": [
                {
                    "name": "David Grudl",
                    "homepage": "https://davidgrudl.com"
                },
                {
                    "name": "Nette Community",
                    "homepage": "https://nette.org/contributors"
                }
            ],
            "description": "🛠  Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
            "homepage": "https://nette.org",
            "keywords": [
                "array",
                "core",
                "datetime",
                "images",
                "json",
                "nette",
                "paginator",
                "password",
                "slugify",
                "string",
                "unicode",
                "utf-8",
                "utility",
                "validation"
            ],
            "support": {
                "issues": "https://github.com/nette/utils/issues",
                "source": "https://github.com/nette/utils/tree/v4.0.0"
            },
            "time": "2023-02-02T10:41:53+00:00"
        },
        {
            "name": "nikic/php-parser",
            "version": "v4.15.4",
            "source": {
                "type": "git",
                "url": "https://github.com/nikic/PHP-Parser.git",
                "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
                "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
                "shasum": ""
            },
            "require": {
                "ext-tokenizer": "*",
                "php": ">=7.0"
            },
            "require-dev": {
                "ircmaxell/php-yacc": "^0.0.7",
                "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
            },
            "bin": [
                "bin/php-parse"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "4.9-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "PhpParser\\": "lib/PhpParser"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Nikita Popov"
                }
            ],
            "description": "A PHP parser written in PHP",
            "keywords": [
                "parser",
                "php"
            ],
            "support": {
                "issues": "https://github.com/nikic/PHP-Parser/issues",
                "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
            },
            "time": "2023-03-05T19:49:14+00:00"
        },
        {
            "name": "pear/archive_tar",
            "version": "1.4.14",
            "source": {
                "type": "git",
                "url": "https://github.com/pear/Archive_Tar.git",
                "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
                "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
                "shasum": ""
            },
            "require": {
                "pear/pear-core-minimal": "^1.10.0alpha2",
                "php": ">=5.2.0"
            },
            "require-dev": {
                "phpunit/phpunit": "*"
            },
            "suggest": {
                "ext-bz2": "Bz2 compression support.",
                "ext-xz": "Lzma2 compression support.",
                "ext-zlib": "Gzip compression support."
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.4.x-dev"
                }
            },
            "autoload": {
                "psr-0": {
                    "Archive_Tar": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "./"
            ],
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Vincent Blavet",
                    "email": "vincent@phpconcept.net"
                },
                {
                    "name": "Greg Beaver",
                    "email": "greg@chiaraquartet.net"
                },
                {
                    "name": "Michiel Rook",
                    "email": "mrook@php.net"
                }
            ],
            "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
            "homepage": "https://github.com/pear/Archive_Tar",
            "keywords": [
                "archive",
                "tar"
            ],
            "support": {
                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
                "source": "https://github.com/pear/Archive_Tar"
            },
            "funding": [
                {
                    "url": "https://github.com/mrook",
                    "type": "github"
                },
                {
                    "url": "https://www.patreon.com/michielrook",
                    "type": "patreon"
                }
            ],
            "time": "2021-07-20T13:53:39+00:00"
        },
        {
            "name": "pear/console_getopt",
            "version": "v1.4.3",
            "source": {
                "type": "git",
                "url": "https://github.com/pear/Console_Getopt.git",
                "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
                "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
                "shasum": ""
            },
            "type": "library",
            "autoload": {
                "psr-0": {
                    "Console": "./"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "./"
            ],
            "license": [
                "BSD-2-Clause"
            ],
            "authors": [
                {
                    "name": "Andrei Zmievski",
                    "email": "andrei@php.net",
                    "role": "Lead"
                },
                {
                    "name": "Stig Bakken",
                    "email": "stig@php.net",
                    "role": "Developer"
                },
                {
                    "name": "Greg Beaver",
                    "email": "cellog@php.net",
                    "role": "Helper"
                }
            ],
            "description": "More info available on: http://pear.php.net/package/Console_Getopt",
            "support": {
                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
                "source": "https://github.com/pear/Console_Getopt"
            },
            "time": "2019-11-20T18:27:48+00:00"
        },
        {
            "name": "pear/pear-core-minimal",
            "version": "v1.10.13",
            "source": {
                "type": "git",
                "url": "https://github.com/pear/pear-core-minimal.git",
                "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
                "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
                "shasum": ""
            },
            "require": {
                "pear/console_getopt": "~1.4",
                "pear/pear_exception": "~1.0"
            },
            "replace": {
                "rsky/pear-core-min": "self.version"
            },
            "type": "library",
            "autoload": {
                "psr-0": {
                    "": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "src/"
            ],
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Christian Weiske",
                    "email": "cweiske@php.net",
                    "role": "Lead"
                }
            ],
            "description": "Minimal set of PEAR core files to be used as composer dependency",
            "support": {
                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
                "source": "https://github.com/pear/pear-core-minimal"
            },
            "time": "2023-04-19T19:15:47+00:00"
        },
        {
            "name": "pear/pear_exception",
            "version": "v1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/pear/PEAR_Exception.git",
                "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
                "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
                "shasum": ""
            },
            "require": {
                "php": ">=5.2.0"
            },
            "require-dev": {
                "phpunit/phpunit": "<9"
            },
            "type": "class",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "classmap": [
                    "PEAR/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "include-path": [
                "."
            ],
            "license": [
                "BSD-2-Clause"
            ],
            "authors": [
                {
                    "name": "Helgi Thormar",
                    "email": "dufuz@php.net"
                },
                {
                    "name": "Greg Beaver",
                    "email": "cellog@php.net"
                }
            ],
            "description": "The PEAR Exception base class.",
            "homepage": "https://github.com/pear/PEAR_Exception",
            "keywords": [
                "exception"
            ],
            "support": {
                "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
                "source": "https://github.com/pear/PEAR_Exception"
            },
            "time": "2021-03-21T15:43:46+00:00"
        },
        {
            "name": "phootwork/collection",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/phootwork/collection.git",
                "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
                "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
                "shasum": ""
            },
            "require": {
                "phootwork/lang": "^3.0",
                "php": ">=8.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "phootwork\\collection\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Thomas Gossmann",
                    "homepage": "http://gos.si"
                }
            ],
            "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
            "homepage": "https://phootwork.github.io/collection/",
            "keywords": [
                "Array object",
                "Text object",
                "collection",
                "collections",
                "json",
                "list",
                "map",
                "queue",
                "set",
                "stack",
                "xml"
            ],
            "support": {
                "issues": "https://github.com/phootwork/phootwork/issues",
                "source": "https://github.com/phootwork/collection/tree/v3.2.1"
            },
            "time": "2022-08-27T12:51:24+00:00"
        },
        {
            "name": "phootwork/lang",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/phootwork/lang.git",
                "reference": "f6687cb0e5453ceb7b4a2c4f9fa81273758eedd0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phootwork/lang/zipball/f6687cb0e5453ceb7b4a2c4f9fa81273758eedd0",
                "reference": "f6687cb0e5453ceb7b4a2c4f9fa81273758eedd0",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0",
                "symfony/polyfill-mbstring": "^1.12",
                "symfony/polyfill-php81": "^1.22"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "phootwork\\lang\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Thomas Gossmann",
                    "homepage": "http://gos.si"
                }
            ],
            "description": "Missing PHP language constructs",
            "homepage": "https://phootwork.github.io/lang/",
            "keywords": [
                "array",
                "comparator",
                "comparison",
                "string"
            ],
            "support": {
                "issues": "https://github.com/phootwork/phootwork/issues",
                "source": "https://github.com/phootwork/lang/tree/v3.2.1"
            },
            "time": "2022-08-27T12:51:24+00:00"
        },
        {
            "name": "phpmailer/phpmailer",
            "version": "v6.8.0",
            "source": {
                "type": "git",
                "url": "https://github.com/PHPMailer/PHPMailer.git",
                "reference": "df16b615e371d81fb79e506277faea67a1be18f1"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/df16b615e371d81fb79e506277faea67a1be18f1",
                "reference": "df16b615e371d81fb79e506277faea67a1be18f1",
                "shasum": ""
            },
            "require": {
                "ext-ctype": "*",
                "ext-filter": "*",
                "ext-hash": "*",
                "php": ">=5.5.0"
            },
            "require-dev": {
                "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
                "doctrine/annotations": "^1.2.6 || ^1.13.3",
                "php-parallel-lint/php-console-highlighter": "^1.0.0",
                "php-parallel-lint/php-parallel-lint": "^1.3.2",
                "phpcompatibility/php-compatibility": "^9.3.5",
                "roave/security-advisories": "dev-latest",
                "squizlabs/php_codesniffer": "^3.7.1",
                "yoast/phpunit-polyfills": "^1.0.4"
            },
            "suggest": {
                "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
                "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
                "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
                "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
                "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
                "psr/log": "For optional PSR-3 debug logging",
                "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
                "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "PHPMailer\\PHPMailer\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "LGPL-2.1-only"
            ],
            "authors": [
                {
                    "name": "Marcus Bointon",
                    "email": "phpmailer@synchromedia.co.uk"
                },
                {
                    "name": "Jim Jagielski",
                    "email": "jimjag@gmail.com"
                },
                {
                    "name": "Andy Prevost",
                    "email": "codeworxtech@users.sourceforge.net"
                },
                {
                    "name": "Brent R. Matzelle"
                }
            ],
            "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
            "support": {
                "issues": "https://github.com/PHPMailer/PHPMailer/issues",
                "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.0"
            },
            "funding": [
                {
                    "url": "https://github.com/Synchro",
                    "type": "github"
                }
            ],
            "time": "2023-03-06T14:43:22+00:00"
        },
        {
            "name": "phpowermove/docblock",
            "version": "v4.0",
            "source": {
                "type": "git",
                "url": "https://github.com/phpowermove/docblock.git",
                "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
                "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
                "shasum": ""
            },
            "require": {
                "phootwork/collection": "^3.0",
                "phootwork/lang": "^3.0",
                "php": ">=8.0"
            },
            "require-dev": {
                "phootwork/php-cs-fixer-config": "^0.4",
                "phpunit/phpunit": "^9.0",
                "psalm/phar": "^4.3"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "phpowermove\\docblock\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Thomas Gossmann",
                    "homepage": "http://gos.si"
                }
            ],
            "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
            "keywords": [
                "docblock",
                "generator",
                "parser"
            ],
            "support": {
                "issues": "https://github.com/phpowermove/docblock/issues",
                "source": "https://github.com/phpowermove/docblock/tree/v4.0"
            },
            "time": "2021-09-22T16:57:06+00:00"
        },
        {
            "name": "politsin/jquery-ui-touch-punch",
            "version": "1.0",
            "source": {
                "type": "git",
                "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
                "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
                "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
                "shasum": ""
            },
            "type": "drupal-library",
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Dave Furfero",
                    "email": "furf@furf.com"
                }
            ],
            "description": "Extension to jQuery UI for mobile touch event support.",
            "homepage": "http://touchpunch.furf.com/",
            "keywords": [
                "gestures",
                "mobile",
                "touch"
            ],
            "support": {
                "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
                "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
            },
            "time": "2020-12-15T10:26:18+00:00"
        },
        {
            "name": "psr/cache",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/cache.git",
                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Cache\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "https://www.php-fig.org/"
                }
            ],
            "description": "Common interface for caching libraries",
            "keywords": [
                "cache",
                "psr",
                "psr-6"
            ],
            "support": {
                "source": "https://github.com/php-fig/cache/tree/3.0.0"
            },
            "time": "2021-02-03T23:26:27+00:00"
        },
        {
            "name": "psr/container",
            "version": "2.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/container.git",
                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
                "shasum": ""
            },
            "require": {
                "php": ">=7.4.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "2.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Container\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "https://www.php-fig.org/"
                }
            ],
            "description": "Common Container Interface (PHP FIG PSR-11)",
            "homepage": "https://github.com/php-fig/container",
            "keywords": [
                "PSR-11",
                "container",
                "container-interface",
                "container-interop",
                "psr"
            ],
            "support": {
                "issues": "https://github.com/php-fig/container/issues",
                "source": "https://github.com/php-fig/container/tree/2.0.2"
            },
            "time": "2021-11-05T16:47:00+00:00"
        },
        {
            "name": "psr/event-dispatcher",
            "version": "1.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/event-dispatcher.git",
                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
                "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
                "shasum": ""
            },
            "require": {
                "php": ">=7.2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\EventDispatcher\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "http://www.php-fig.org/"
                }
            ],
            "description": "Standard interfaces for event handling.",
            "keywords": [
                "events",
                "psr",
                "psr-14"
            ],
            "support": {
                "issues": "https://github.com/php-fig/event-dispatcher/issues",
                "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
            },
            "time": "2019-01-08T18:20:26+00:00"
        },
        {
            "name": "psr/http-client",
            "version": "1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/http-client.git",
                "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
                "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
                "shasum": ""
            },
            "require": {
                "php": "^7.0 || ^8.0",
                "psr/http-message": "^1.0 || ^2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Http\\Client\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "https://www.php-fig.org/"
                }
            ],
            "description": "Common interface for HTTP clients",
            "homepage": "https://github.com/php-fig/http-client",
            "keywords": [
                "http",
                "http-client",
                "psr",
                "psr-18"
            ],
            "support": {
                "source": "https://github.com/php-fig/http-client/tree/1.0.2"
            },
            "time": "2023-04-10T20:12:12+00:00"
        },
        {
            "name": "psr/http-factory",
            "version": "1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/http-factory.git",
                "reference": "e616d01114759c4c489f93b099585439f795fe35"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
                "reference": "e616d01114759c4c489f93b099585439f795fe35",
                "shasum": ""
            },
            "require": {
                "php": ">=7.0.0",
                "psr/http-message": "^1.0 || ^2.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Http\\Message\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "https://www.php-fig.org/"
                }
            ],
            "description": "Common interfaces for PSR-7 HTTP message factories",
            "keywords": [
                "factory",
                "http",
                "message",
                "psr",
                "psr-17",
                "psr-7",
                "request",
                "response"
            ],
            "support": {
                "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
            },
            "time": "2023-04-10T20:10:41+00:00"
        },
        {
            "name": "psr/http-message",
            "version": "1.0.1",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/http-message.git",
                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
                "shasum": ""
            },
            "require": {
                "php": ">=5.3.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "1.0.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Http\\Message\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "http://www.php-fig.org/"
                }
            ],
            "description": "Common interface for HTTP messages",
            "homepage": "https://github.com/php-fig/http-message",
            "keywords": [
                "http",
                "http-message",
                "psr",
                "psr-7",
                "request",
                "response"
            ],
            "support": {
                "source": "https://github.com/php-fig/http-message/tree/master"
            },
            "time": "2016-08-06T14:39:51+00:00"
        },
        {
            "name": "psr/log",
            "version": "3.0.0",
            "source": {
                "type": "git",
                "url": "https://github.com/php-fig/log.git",
                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
                "shasum": ""
            },
            "require": {
                "php": ">=8.0.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.x-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Psr\\Log\\": "src"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "PHP-FIG",
                    "homepage": "https://www.php-fig.org/"
                }
            ],
            "description": "Common interface for logging libraries",
            "homepage": "https://github.com/php-fig/log",
            "keywords": [
                "log",
                "psr",
                "psr-3"
            ],
            "support": {
                "source": "https://github.com/php-fig/log/tree/3.0.0"
            },
            "time": "2021-07-14T16:46:02+00:00"
        },
        {
            "name": "psy/psysh",
            "version": "v0.11.12",
            "source": {
                "type": "git",
                "url": "https://github.com/bobthecow/psysh.git",
                "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
                "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
                "shasum": ""
            },
            "require": {
                "ext-json": "*",
                "ext-tokenizer": "*",
                "nikic/php-parser": "^4.0 || ^3.1",
                "php": "^8.0 || ^7.0.8",
                "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
                "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
            },
            "conflict": {
                "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
            },
            "require-dev": {
                "bamarni/composer-bin-plugin": "^1.2"
            },
            "suggest": {
                "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
                "ext-pdo-sqlite": "The doc command requires SQLite to work.",
                "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
                "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
            },
            "bin": [
                "bin/psysh"
            ],
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "0.11.x-dev"
                }
            },
            "autoload": {
                "files": [
                    "src/functions.php"
                ],
                "psr-4": {
                    "Psy\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Justin Hileman",
                    "email": "justin@justinhileman.info",
                    "homepage": "http://justinhileman.com"
                }
            ],
            "description": "An interactive shell for modern PHP.",
            "homepage": "http://psysh.org",
            "keywords": [
                "REPL",
                "console",
                "interactive",
                "shell"
            ],
            "support": {
                "issues": "https://github.com/bobthecow/psysh/issues",
                "source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
            },
            "time": "2023-01-29T21:24:40+00:00"
        },
        {
            "name": "ralouphie/getallheaders",
            "version": "3.0.3",
            "source": {
                "type": "git",
                "url": "https://github.com/ralouphie/getallheaders.git",
                "reference": "120b605dfeb996808c31b6477290a714d356e822"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
                "reference": "120b605dfeb996808c31b6477290a714d356e822",
                "shasum": ""
            },
            "require": {
                "php": ">=5.6"
            },
            "require-dev": {
                "php-coveralls/php-coveralls": "^2.1",
                "phpunit/phpunit": "^5 || ^6.5"
            },
            "type": "library",
            "autoload": {
                "files": [
                    "src/getallheaders.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Ralph Khattar",
                    "email": "ralph.khattar@gmail.com"
                }
            ],
            "description": "A polyfill for getallheaders.",
            "support": {
                "issues": "https://github.com/ralouphie/getallheaders/issues",
                "source": "https://github.com/ralouphie/getallheaders/tree/develop"
            },
            "time": "2019-03-08T08:55:37+00:00"
        },
        {
            "name": "symfony/console",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/console.git",
                "reference": "dad41ae62bacb7fd96c463278ad583f81ccdffb5"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/console/zipball/dad41ae62bacb7fd96c463278ad583f81ccdffb5",
                "reference": "dad41ae62bacb7fd96c463278ad583f81ccdffb5",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/polyfill-mbstring": "~1.0",
                "symfony/service-contracts": "^1.1|^2|^3",
                "symfony/string": "^5.4|^6.0"
            },
            "conflict": {
                "symfony/dependency-injection": "<5.4",
                "symfony/dotenv": "<5.4",
                "symfony/event-dispatcher": "<5.4",
                "symfony/lock": "<5.4",
                "symfony/process": "<5.4"
            },
            "provide": {
                "psr/log-implementation": "1.0|2.0|3.0"
            },
            "require-dev": {
                "psr/log": "^1|^2|^3",
                "symfony/config": "^5.4|^6.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/event-dispatcher": "^5.4|^6.0",
                "symfony/lock": "^5.4|^6.0",
                "symfony/process": "^5.4|^6.0",
                "symfony/var-dumper": "^5.4|^6.0"
            },
            "suggest": {
                "psr/log": "For using the console logger",
                "symfony/event-dispatcher": "",
                "symfony/lock": "",
                "symfony/process": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Console\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Eases the creation of beautiful and testable command line interfaces",
            "homepage": "https://symfony.com",
            "keywords": [
                "cli",
                "command-line",
                "console",
                "terminal"
            ],
            "support": {
                "source": "https://github.com/symfony/console/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-29T12:46:33+00:00"
        },
        {
            "name": "symfony/css-selector",
            "version": "v4.4.44",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/css-selector.git",
                "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/css-selector/zipball/bd0a6737e48de45b4b0b7b6fc98c78404ddceaed",
                "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1.3",
                "symfony/polyfill-php80": "^1.16"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\CssSelector\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Jean-François Simon",
                    "email": "jeanfrancois.simon@sensiolabs.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Converts CSS selectors to XPath expressions",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/css-selector/tree/v4.4.44"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-06-27T13:16:42+00:00"
        },
        {
            "name": "symfony/dependency-injection",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/dependency-injection.git",
                "reference": "c0a0c04f304a5b7d40d4d4102bc482b5da618e54"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c0a0c04f304a5b7d40d4d4102bc482b5da618e54",
                "reference": "c0a0c04f304a5b7d40d4d4102bc482b5da618e54",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "psr/container": "^1.1|^2.0",
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
                "symfony/var-exporter": "^6.2.7"
            },
            "conflict": {
                "ext-psr": "<1.1|>=2",
                "symfony/config": "<6.1",
                "symfony/finder": "<5.4",
                "symfony/proxy-manager-bridge": "<6.2",
                "symfony/yaml": "<5.4"
            },
            "provide": {
                "psr/container-implementation": "1.1|2.0",
                "symfony/service-implementation": "1.1|2.0|3.0"
            },
            "require-dev": {
                "symfony/config": "^6.1",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/yaml": "^5.4|^6.0"
            },
            "suggest": {
                "symfony/config": "",
                "symfony/expression-language": "For using expressions in service container configuration",
                "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
                "symfony/yaml": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\DependencyInjection\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Allows you to standardize and centralize the way objects are constructed in your application",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/dependency-injection/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-24T11:48:11+00:00"
        },
        {
            "name": "symfony/deprecation-contracts",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/deprecation-contracts.git",
                "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
                "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.3-dev"
                },
                "thanks": {
                    "name": "symfony/contracts",
                    "url": "https://github.com/symfony/contracts"
                }
            },
            "autoload": {
                "files": [
                    "function.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "A generic function and convention to trigger deprecation notices",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-01T10:25:55+00:00"
        },
        {
            "name": "symfony/dom-crawler",
            "version": "v4.4.45",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/dom-crawler.git",
                "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b8daf6c56801e6d664224261cb100b73edc78a5",
                "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1.3",
                "symfony/polyfill-ctype": "~1.8",
                "symfony/polyfill-mbstring": "~1.0",
                "symfony/polyfill-php80": "^1.16"
            },
            "conflict": {
                "masterminds/html5": "<2.6"
            },
            "require-dev": {
                "masterminds/html5": "^2.6",
                "symfony/css-selector": "^3.4|^4.0|^5.0"
            },
            "suggest": {
                "symfony/css-selector": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\DomCrawler\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Eases DOM navigation for HTML and XML documents",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/dom-crawler/tree/v4.4.45"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-08-03T12:57:57+00:00"
        },
        {
            "name": "symfony/error-handler",
            "version": "v6.2.11",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/error-handler.git",
                "reference": "e847ba47e7a8f9708082990cb40ab4ff0440a11e"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/error-handler/zipball/e847ba47e7a8f9708082990cb40ab4ff0440a11e",
                "reference": "e847ba47e7a8f9708082990cb40ab4ff0440a11e",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "psr/log": "^1|^2|^3",
                "symfony/var-dumper": "^5.4|^6.0"
            },
            "require-dev": {
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/http-kernel": "^5.4|^6.0",
                "symfony/serializer": "^5.4|^6.0"
            },
            "bin": [
                "Resources/bin/patch-type-declarations"
            ],
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\ErrorHandler\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides tools to manage errors and ease debugging PHP code",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/error-handler/tree/v6.2.11"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-05T11:55:01+00:00"
        },
        {
            "name": "symfony/event-dispatcher",
            "version": "v6.2.8",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/event-dispatcher.git",
                "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
                "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/event-dispatcher-contracts": "^2|^3"
            },
            "conflict": {
                "symfony/dependency-injection": "<5.4"
            },
            "provide": {
                "psr/event-dispatcher-implementation": "1.0",
                "symfony/event-dispatcher-implementation": "2.0|3.0"
            },
            "require-dev": {
                "psr/log": "^1|^2|^3",
                "symfony/config": "^5.4|^6.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/error-handler": "^5.4|^6.0",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/http-foundation": "^5.4|^6.0",
                "symfony/service-contracts": "^1.1|^2|^3",
                "symfony/stopwatch": "^5.4|^6.0"
            },
            "suggest": {
                "symfony/dependency-injection": "",
                "symfony/http-kernel": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\EventDispatcher\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-20T16:06:02+00:00"
        },
        {
            "name": "symfony/event-dispatcher-contracts",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/event-dispatcher-contracts.git",
                "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
                "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "psr/event-dispatcher": "^1"
            },
            "suggest": {
                "symfony/event-dispatcher-implementation": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.3-dev"
                },
                "thanks": {
                    "name": "symfony/contracts",
                    "url": "https://github.com/symfony/contracts"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Contracts\\EventDispatcher\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Generic abstractions related to dispatching event",
            "homepage": "https://symfony.com",
            "keywords": [
                "abstractions",
                "contracts",
                "decoupling",
                "interfaces",
                "interoperability",
                "standards"
            ],
            "support": {
                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-01T10:32:47+00:00"
        },
        {
            "name": "symfony/filesystem",
            "version": "v6.2.5",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/filesystem.git",
                "reference": "e59e8a4006afd7f5654786a83b4fcb8da98f4593"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/filesystem/zipball/e59e8a4006afd7f5654786a83b4fcb8da98f4593",
                "reference": "e59e8a4006afd7f5654786a83b4fcb8da98f4593",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-ctype": "~1.8",
                "symfony/polyfill-mbstring": "~1.8"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Filesystem\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides basic utilities for the filesystem",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/filesystem/tree/v6.2.5"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-01-20T17:45:48+00:00"
        },
        {
            "name": "symfony/finder",
            "version": "v6.3.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/finder.git",
                "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
                "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "require-dev": {
                "symfony/filesystem": "^6.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Finder\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Finds files and directories via an intuitive fluent interface",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/finder/tree/v6.3.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-04-02T01:25:41+00:00"
        },
        {
            "name": "symfony/http-foundation",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/http-foundation.git",
                "reference": "94e3bc563fb92444588b3e2480fc47bb251ef295"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/94e3bc563fb92444588b3e2480fc47bb251ef295",
                "reference": "94e3bc563fb92444588b3e2480fc47bb251ef295",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/polyfill-mbstring": "~1.1"
            },
            "conflict": {
                "symfony/cache": "<6.2"
            },
            "require-dev": {
                "predis/predis": "~1.0",
                "symfony/cache": "^5.4|^6.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
                "symfony/mime": "^5.4|^6.0",
                "symfony/rate-limiter": "^5.2|^6.0"
            },
            "suggest": {
                "symfony/mime": "To use the file extension guesser"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\HttpFoundation\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Defines an object-oriented layer for the HTTP specification",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/http-foundation/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-24T11:48:11+00:00"
        },
        {
            "name": "symfony/http-kernel",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/http-kernel.git",
                "reference": "fb02830a72c82759e4bc7eaf4c16e0b81303df38"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fb02830a72c82759e4bc7eaf4c16e0b81303df38",
                "reference": "fb02830a72c82759e4bc7eaf4c16e0b81303df38",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "psr/log": "^1|^2|^3",
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/error-handler": "^6.1",
                "symfony/event-dispatcher": "^5.4|^6.0",
                "symfony/http-foundation": "^5.4.21|^6.2.7",
                "symfony/polyfill-ctype": "^1.8"
            },
            "conflict": {
                "symfony/browser-kit": "<5.4",
                "symfony/cache": "<5.4",
                "symfony/config": "<6.1",
                "symfony/console": "<5.4",
                "symfony/dependency-injection": "<6.2",
                "symfony/doctrine-bridge": "<5.4",
                "symfony/form": "<5.4",
                "symfony/http-client": "<5.4",
                "symfony/mailer": "<5.4",
                "symfony/messenger": "<5.4",
                "symfony/translation": "<5.4",
                "symfony/twig-bridge": "<5.4",
                "symfony/validator": "<5.4",
                "twig/twig": "<2.13"
            },
            "provide": {
                "psr/log-implementation": "1.0|2.0|3.0"
            },
            "require-dev": {
                "psr/cache": "^1.0|^2.0|^3.0",
                "symfony/browser-kit": "^5.4|^6.0",
                "symfony/config": "^6.1",
                "symfony/console": "^5.4|^6.0",
                "symfony/css-selector": "^5.4|^6.0",
                "symfony/dependency-injection": "^6.2",
                "symfony/dom-crawler": "^5.4|^6.0",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/finder": "^5.4|^6.0",
                "symfony/http-client-contracts": "^1.1|^2|^3",
                "symfony/process": "^5.4|^6.0",
                "symfony/routing": "^5.4|^6.0",
                "symfony/stopwatch": "^5.4|^6.0",
                "symfony/translation": "^5.4|^6.0",
                "symfony/translation-contracts": "^1.1|^2|^3",
                "symfony/uid": "^5.4|^6.0",
                "symfony/var-exporter": "^6.2",
                "twig/twig": "^2.13|^3.0.4"
            },
            "suggest": {
                "symfony/browser-kit": "",
                "symfony/config": "",
                "symfony/console": "",
                "symfony/dependency-injection": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\HttpKernel\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides a structured process for converting a Request into a Response",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/http-kernel/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-26T06:02:47+00:00"
        },
        {
            "name": "symfony/mime",
            "version": "v6.2.10",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/mime.git",
                "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/mime/zipball/b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
                "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-intl-idn": "^1.10",
                "symfony/polyfill-mbstring": "^1.0"
            },
            "conflict": {
                "egulias/email-validator": "~3.0.0",
                "phpdocumentor/reflection-docblock": "<3.2.2",
                "phpdocumentor/type-resolver": "<1.4.0",
                "symfony/mailer": "<5.4",
                "symfony/serializer": "<6.2"
            },
            "require-dev": {
                "egulias/email-validator": "^2.1.10|^3.1|^4",
                "league/html-to-markdown": "^5.0",
                "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/property-access": "^5.4|^6.0",
                "symfony/property-info": "^5.4|^6.0",
                "symfony/serializer": "^6.2"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Mime\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Allows manipulating MIME messages",
            "homepage": "https://symfony.com",
            "keywords": [
                "mime",
                "mime-type"
            ],
            "support": {
                "source": "https://github.com/symfony/mime/tree/v6.2.10"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-04-19T09:54:16+00:00"
        },
        {
            "name": "symfony/polyfill-ctype",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-ctype.git",
                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "provide": {
                "ext-ctype": "*"
            },
            "suggest": {
                "ext-ctype": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Ctype\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Gert de Pagter",
                    "email": "BackEndTea@gmail.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for ctype functions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "ctype",
                "polyfill",
                "portable"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-iconv",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-iconv.git",
                "reference": "927013f3aac555983a5059aada98e1907d842695"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
                "reference": "927013f3aac555983a5059aada98e1907d842695",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "provide": {
                "ext-iconv": "*"
            },
            "suggest": {
                "ext-iconv": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Iconv\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for the Iconv extension",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "iconv",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-intl-grapheme",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
                "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
                "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "suggest": {
                "ext-intl": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for intl's grapheme_* functions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "grapheme",
                "intl",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-intl-idn",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-intl-idn.git",
                "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
                "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1",
                "symfony/polyfill-intl-normalizer": "^1.10",
                "symfony/polyfill-php72": "^1.10"
            },
            "suggest": {
                "ext-intl": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Laurent Bassin",
                    "email": "laurent@bassin.info"
                },
                {
                    "name": "Trevor Rowbotham",
                    "email": "trevor.rowbotham@pm.me"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "idn",
                "intl",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-intl-normalizer",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "suggest": {
                "ext-intl": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
                },
                "classmap": [
                    "Resources/stubs"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for intl's Normalizer class and related functions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "intl",
                "normalizer",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-mbstring",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-mbstring.git",
                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "provide": {
                "ext-mbstring": "*"
            },
            "suggest": {
                "ext-mbstring": "For best performance"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Mbstring\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill for the Mbstring extension",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "mbstring",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-php72",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-php72.git",
                "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
                "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Php72\\": ""
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-php80",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-php80.git",
                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Php80\\": ""
                },
                "classmap": [
                    "Resources/stubs"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Ion Bazan",
                    "email": "ion.bazan@gmail.com"
                },
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/polyfill-php81",
            "version": "v1.27.0",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/polyfill-php81.git",
                "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
                "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "1.27-dev"
                },
                "thanks": {
                    "name": "symfony/polyfill",
                    "url": "https://github.com/symfony/polyfill"
                }
            },
            "autoload": {
                "files": [
                    "bootstrap.php"
                ],
                "psr-4": {
                    "Symfony\\Polyfill\\Php81\\": ""
                },
                "classmap": [
                    "Resources/stubs"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
            "homepage": "https://symfony.com",
            "keywords": [
                "compatibility",
                "polyfill",
                "portable",
                "shim"
            ],
            "support": {
                "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-03T14:55:06+00:00"
        },
        {
            "name": "symfony/process",
            "version": "v6.2.11",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/process.git",
                "reference": "97ae9721bead9d1a39b5650e2f4b7834b93b539c"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/process/zipball/97ae9721bead9d1a39b5650e2f4b7834b93b539c",
                "reference": "97ae9721bead9d1a39b5650e2f4b7834b93b539c",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Process\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Executes commands in sub-processes",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/process/tree/v6.2.11"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-19T07:42:48+00:00"
        },
        {
            "name": "symfony/psr-http-message-bridge",
            "version": "v2.1.4",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/psr-http-message-bridge.git",
                "reference": "a125b93ef378c492e274f217874906fb9babdebb"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
                "reference": "a125b93ef378c492e274f217874906fb9babdebb",
                "shasum": ""
            },
            "require": {
                "php": ">=7.1",
                "psr/http-message": "^1.0",
                "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
            },
            "require-dev": {
                "nyholm/psr7": "^1.1",
                "psr/log": "^1.1 || ^2 || ^3",
                "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
                "symfony/config": "^4.4 || ^5.0 || ^6.0",
                "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
                "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
                "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
                "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
            },
            "suggest": {
                "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
            },
            "type": "symfony-bridge",
            "extra": {
                "branch-alias": {
                    "dev-main": "2.1-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Bridge\\PsrHttpMessage\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "http://symfony.com/contributors"
                }
            ],
            "description": "PSR HTTP message bridge",
            "homepage": "http://symfony.com",
            "keywords": [
                "http",
                "http-message",
                "psr-17",
                "psr-7"
            ],
            "support": {
                "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
                "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2022-11-28T22:46:34+00:00"
        },
        {
            "name": "symfony/routing",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/routing.git",
                "reference": "d59dc6a43191985bc9c27c746ce7986f01540e94"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/routing/zipball/d59dc6a43191985bc9c27c746ce7986f01540e94",
                "reference": "d59dc6a43191985bc9c27c746ce7986f01540e94",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "conflict": {
                "doctrine/annotations": "<1.12",
                "symfony/config": "<6.2",
                "symfony/dependency-injection": "<5.4",
                "symfony/yaml": "<5.4"
            },
            "require-dev": {
                "doctrine/annotations": "^1.12|^2",
                "psr/log": "^1|^2|^3",
                "symfony/config": "^6.2",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/http-foundation": "^5.4|^6.0",
                "symfony/yaml": "^5.4|^6.0"
            },
            "suggest": {
                "symfony/config": "For using the all-in-one router or any loader",
                "symfony/expression-language": "For using expression matching",
                "symfony/http-foundation": "For using a Symfony Request object",
                "symfony/yaml": "For using the YAML loader"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Routing\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Maps an HTTP request to a set of configuration variables",
            "homepage": "https://symfony.com",
            "keywords": [
                "router",
                "routing",
                "uri",
                "url"
            ],
            "support": {
                "source": "https://github.com/symfony/routing/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-05T15:29:05+00:00"
        },
        {
            "name": "symfony/serializer",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/serializer.git",
                "reference": "7be4b2fd8f385904887aa09ee08a4e4adee4c0d2"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/serializer/zipball/7be4b2fd8f385904887aa09ee08a4e4adee4c0d2",
                "reference": "7be4b2fd8f385904887aa09ee08a4e4adee4c0d2",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-ctype": "~1.8"
            },
            "conflict": {
                "doctrine/annotations": "<1.12",
                "phpdocumentor/reflection-docblock": "<3.2.2",
                "phpdocumentor/type-resolver": "<1.4.0",
                "symfony/dependency-injection": "<5.4",
                "symfony/property-access": "<5.4",
                "symfony/property-info": "<5.4",
                "symfony/uid": "<5.4",
                "symfony/yaml": "<5.4"
            },
            "require-dev": {
                "doctrine/annotations": "^1.12|^2",
                "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
                "symfony/cache": "^5.4|^6.0",
                "symfony/config": "^5.4|^6.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/error-handler": "^5.4|^6.0",
                "symfony/filesystem": "^5.4|^6.0",
                "symfony/form": "^5.4|^6.0",
                "symfony/http-foundation": "^5.4|^6.0",
                "symfony/http-kernel": "^5.4|^6.0",
                "symfony/mime": "^5.4|^6.0",
                "symfony/property-access": "^5.4|^6.0",
                "symfony/property-info": "^5.4|^6.0",
                "symfony/uid": "^5.4|^6.0",
                "symfony/validator": "^5.4|^6.0",
                "symfony/var-dumper": "^5.4|^6.0",
                "symfony/var-exporter": "^5.4|^6.0",
                "symfony/yaml": "^5.4|^6.0"
            },
            "suggest": {
                "psr/cache-implementation": "For using the metadata cache.",
                "symfony/config": "For using the XML mapping loader.",
                "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
                "symfony/property-access": "For using the ObjectNormalizer.",
                "symfony/property-info": "To deserialize relations.",
                "symfony/var-exporter": "For using the metadata compiler.",
                "symfony/yaml": "For using the default YAML mapping loader."
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Serializer\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/serializer/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-05-30T17:07:47+00:00"
        },
        {
            "name": "symfony/service-contracts",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/service-contracts.git",
                "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
                "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "psr/container": "^2.0"
            },
            "conflict": {
                "ext-psr": "<1.1|>=2"
            },
            "suggest": {
                "symfony/service-implementation": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.3-dev"
                },
                "thanks": {
                    "name": "symfony/contracts",
                    "url": "https://github.com/symfony/contracts"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Contracts\\Service\\": ""
                },
                "exclude-from-classmap": [
                    "/Test/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Generic abstractions related to writing services",
            "homepage": "https://symfony.com",
            "keywords": [
                "abstractions",
                "contracts",
                "decoupling",
                "interfaces",
                "interoperability",
                "standards"
            ],
            "support": {
                "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-01T10:32:47+00:00"
        },
        {
            "name": "symfony/string",
            "version": "v6.2.8",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/string.git",
                "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
                "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-ctype": "~1.8",
                "symfony/polyfill-intl-grapheme": "~1.0",
                "symfony/polyfill-intl-normalizer": "~1.0",
                "symfony/polyfill-mbstring": "~1.0"
            },
            "conflict": {
                "symfony/translation-contracts": "<2.0"
            },
            "require-dev": {
                "symfony/error-handler": "^5.4|^6.0",
                "symfony/http-client": "^5.4|^6.0",
                "symfony/intl": "^6.2",
                "symfony/translation-contracts": "^2.0|^3.0",
                "symfony/var-exporter": "^5.4|^6.0"
            },
            "type": "library",
            "autoload": {
                "files": [
                    "Resources/functions.php"
                ],
                "psr-4": {
                    "Symfony\\Component\\String\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
            "homepage": "https://symfony.com",
            "keywords": [
                "grapheme",
                "i18n",
                "string",
                "unicode",
                "utf-8",
                "utf8"
            ],
            "support": {
                "source": "https://github.com/symfony/string/tree/v6.2.8"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-20T16:06:02+00:00"
        },
        {
            "name": "symfony/translation-contracts",
            "version": "v3.2.1",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/translation-contracts.git",
                "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
                "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "suggest": {
                "symfony/translation-implementation": ""
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-main": "3.3-dev"
                },
                "thanks": {
                    "name": "symfony/contracts",
                    "url": "https://github.com/symfony/contracts"
                }
            },
            "autoload": {
                "psr-4": {
                    "Symfony\\Contracts\\Translation\\": ""
                },
                "exclude-from-classmap": [
                    "/Test/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Generic abstractions related to translation",
            "homepage": "https://symfony.com",
            "keywords": [
                "abstractions",
                "contracts",
                "decoupling",
                "interfaces",
                "interoperability",
                "standards"
            ],
            "support": {
                "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-03-01T10:32:47+00:00"
        },
        {
            "name": "symfony/validator",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/validator.git",
                "reference": "1c22c832e9415c381a7186618f0319cda6fd5618"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/validator/zipball/1c22c832e9415c381a7186618f0319cda6fd5618",
                "reference": "1c22c832e9415c381a7186618f0319cda6fd5618",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/deprecation-contracts": "^2.1|^3",
                "symfony/polyfill-ctype": "~1.8",
                "symfony/polyfill-mbstring": "~1.0",
                "symfony/translation-contracts": "^1.1|^2|^3"
            },
            "conflict": {
                "doctrine/annotations": "<1.13",
                "doctrine/lexer": "<1.1",
                "symfony/dependency-injection": "<5.4",
                "symfony/expression-language": "<5.4",
                "symfony/http-kernel": "<5.4",
                "symfony/intl": "<5.4",
                "symfony/property-info": "<5.4",
                "symfony/translation": "<5.4",
                "symfony/yaml": "<5.4"
            },
            "require-dev": {
                "doctrine/annotations": "^1.13|^2",
                "egulias/email-validator": "^2.1.10|^3|^4",
                "symfony/cache": "^5.4|^6.0",
                "symfony/config": "^5.4|^6.0",
                "symfony/console": "^5.4|^6.0",
                "symfony/dependency-injection": "^5.4|^6.0",
                "symfony/expression-language": "^5.4|^6.0",
                "symfony/finder": "^5.4|^6.0",
                "symfony/http-client": "^5.4|^6.0",
                "symfony/http-foundation": "^5.4|^6.0",
                "symfony/http-kernel": "^5.4|^6.0",
                "symfony/intl": "^5.4|^6.0",
                "symfony/mime": "^5.4|^6.0",
                "symfony/property-access": "^5.4|^6.0",
                "symfony/property-info": "^5.4|^6.0",
                "symfony/translation": "^5.4|^6.0",
                "symfony/yaml": "^5.4|^6.0"
            },
            "suggest": {
                "egulias/email-validator": "Strict (RFC compliant) email validation",
                "psr/cache-implementation": "For using the mapping cache.",
                "symfony/config": "",
                "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
                "symfony/http-foundation": "",
                "symfony/intl": "",
                "symfony/property-access": "For accessing properties within comparison constraints",
                "symfony/property-info": "To automatically add NotNull and Type constraints",
                "symfony/translation": "For translating validation errors.",
                "symfony/yaml": ""
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Validator\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides tools to validate values",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/validator/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-21T12:07:00+00:00"
        },
        {
            "name": "symfony/var-dumper",
            "version": "v6.2.12",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/var-dumper.git",
                "reference": "facbf30fe37f62e0ea50972467c08b7e80d22ed0"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/facbf30fe37f62e0ea50972467c08b7e80d22ed0",
                "reference": "facbf30fe37f62e0ea50972467c08b7e80d22ed0",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-mbstring": "~1.0"
            },
            "conflict": {
                "symfony/console": "<5.4"
            },
            "require-dev": {
                "ext-iconv": "*",
                "symfony/console": "^5.4|^6.0",
                "symfony/process": "^5.4|^6.0",
                "symfony/uid": "^5.4|^6.0",
                "twig/twig": "^2.13|^3.0.4"
            },
            "suggest": {
                "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
                "ext-intl": "To show region name in time zone dump",
                "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
            },
            "bin": [
                "Resources/bin/var-dump-server"
            ],
            "type": "library",
            "autoload": {
                "files": [
                    "Resources/functions/dump.php"
                ],
                "psr-4": {
                    "Symfony\\Component\\VarDumper\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Provides mechanisms for walking through any arbitrary PHP variable",
            "homepage": "https://symfony.com",
            "keywords": [
                "debug",
                "dump"
            ],
            "support": {
                "source": "https://github.com/symfony/var-dumper/tree/v6.2.12"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-06-20T21:12:34+00:00"
        },
        {
            "name": "symfony/var-exporter",
            "version": "v6.2.10",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/var-exporter.git",
                "reference": "9a07920c2058bafee921ce4d90aeef2193837d63"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9a07920c2058bafee921ce4d90aeef2193837d63",
                "reference": "9a07920c2058bafee921ce4d90aeef2193837d63",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1"
            },
            "require-dev": {
                "symfony/var-dumper": "^5.4|^6.0"
            },
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\VarExporter\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Nicolas Grekas",
                    "email": "p@tchwork.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Allows exporting any serializable PHP data structure to plain PHP code",
            "homepage": "https://symfony.com",
            "keywords": [
                "clone",
                "construct",
                "export",
                "hydrate",
                "instantiate",
                "lazy-loading",
                "proxy",
                "serialize"
            ],
            "support": {
                "source": "https://github.com/symfony/var-exporter/tree/v6.2.10"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-04-21T08:33:05+00:00"
        },
        {
            "name": "symfony/yaml",
            "version": "v6.2.10",
            "source": {
                "type": "git",
                "url": "https://github.com/symfony/yaml.git",
                "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
                "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
                "shasum": ""
            },
            "require": {
                "php": ">=8.1",
                "symfony/polyfill-ctype": "^1.8"
            },
            "conflict": {
                "symfony/console": "<5.4"
            },
            "require-dev": {
                "symfony/console": "^5.4|^6.0"
            },
            "suggest": {
                "symfony/console": "For validating YAML files using the lint command"
            },
            "bin": [
                "Resources/bin/yaml-lint"
            ],
            "type": "library",
            "autoload": {
                "psr-4": {
                    "Symfony\\Component\\Yaml\\": ""
                },
                "exclude-from-classmap": [
                    "/Tests/"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "MIT"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com"
                },
                {
                    "name": "Symfony Community",
                    "homepage": "https://symfony.com/contributors"
                }
            ],
            "description": "Loads and dumps YAML files",
            "homepage": "https://symfony.com",
            "support": {
                "source": "https://github.com/symfony/yaml/tree/v6.2.10"
            },
            "funding": [
                {
                    "url": "https://symfony.com/sponsor",
                    "type": "custom"
                },
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
                    "type": "tidelift"
                }
            ],
            "time": "2023-04-28T13:25:36+00:00"
        },
        {
            "name": "twig/twig",
            "version": "v3.5.1",
            "source": {
                "type": "git",
                "url": "https://github.com/twigphp/Twig.git",
                "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6e0510cc793912b451fd40ab983a1d28f611c15",
                "reference": "a6e0510cc793912b451fd40ab983a1d28f611c15",
                "shasum": ""
            },
            "require": {
                "php": ">=7.2.5",
                "symfony/polyfill-ctype": "^1.8",
                "symfony/polyfill-mbstring": "^1.3"
            },
            "require-dev": {
                "psr/container": "^1.0",
                "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
            },
            "type": "library",
            "extra": {
                "branch-alias": {
                    "dev-master": "3.5-dev"
                }
            },
            "autoload": {
                "psr-4": {
                    "Twig\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "BSD-3-Clause"
            ],
            "authors": [
                {
                    "name": "Fabien Potencier",
                    "email": "fabien@symfony.com",
                    "homepage": "http://fabien.potencier.org",
                    "role": "Lead Developer"
                },
                {
                    "name": "Twig Team",
                    "role": "Contributors"
                },
                {
                    "name": "Armin Ronacher",
                    "email": "armin.ronacher@active-4.com",
                    "role": "Project Founder"
                }
            ],
            "description": "Twig, the flexible, fast, and secure template language for PHP",
            "homepage": "https://twig.symfony.com",
            "keywords": [
                "templating"
            ],
            "support": {
                "issues": "https://github.com/twigphp/Twig/issues",
                "source": "https://github.com/twigphp/Twig/tree/v3.5.1"
            },
            "funding": [
                {
                    "url": "https://github.com/fabpot",
                    "type": "github"
                },
                {
                    "url": "https://tidelift.com/funding/github/packagist/twig/twig",
                    "type": "tidelift"
                }
            ],
            "time": "2023-02-08T07:49:20+00:00"
        },
        {
            "name": "webflo/drupal-finder",
            "version": "1.2.2",
            "source": {
                "type": "git",
                "url": "https://github.com/webflo/drupal-finder.git",
                "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
                "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
                "shasum": ""
            },
            "require": {
                "ext-json": "*"
            },
            "require-dev": {
                "mikey179/vfsstream": "^1.6",
                "phpunit/phpunit": "^4.8"
            },
            "type": "library",
            "autoload": {
                "classmap": [
                    "src/DrupalFinder.php"
                ]
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Florian Weber",
                    "email": "florian@webflo.org"
                }
            ],
            "description": "Helper class to locate a Drupal installation from a given path.",
            "support": {
                "issues": "https://github.com/webflo/drupal-finder/issues",
                "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
            },
            "time": "2020-10-27T09:42:17+00:00"
        }
    ],
    "packages-dev": [],
    "aliases": [],
    "minimum-stability": "dev",
    "stability-flags": {
        "drupal/block_field": 5,
        "drupal/commerce_stock": 20,
        "drupal/conditional_fields": 15,
        "drupal/focal_point": 15,
        "drupal/gin": 5,
        "drupal/gin_toolbar": 5,
        "drupal/inline_entity_form": 5,
        "drupal/selective_better_exposed_filters": 10,
        "drupal/twigsuggest": 5,
        "drupal/uswds_ckeditor_integration": 20
    },
    "prefer-stable": true,
    "prefer-lowest": false,
    "platform": [],
    "platform-dev": [],
    "plugin-api-version": "2.3.0"
}

🇺🇸United States SoCalErich

I'm not sure if this will help anyone else, but I have come up with a temporary work around for this. It's a little hackey, but it is working for me. The prerequisite though is that you have the Better Exposed Filters module and the Views AJAX History module installed and have your view setup to use AJAX History, which can be enabled in the AJAX settings of your view. This will essentially add URL parameters to the URL with your filters even though you are using AJAX. This is actually a plus as far as I am concerned, because it enables bookmarking of filters that were applied to your search. Other than that, just set your Reset button to "Always display" in the BEF settings. Then use this JavaScript:

/*
There is currently a bug where if AJAX is enabled for a view and you configure a Reset button to show for exposed filters, the button will not appear when filters are selected. A temp work around is to configure the Reset button to always appear and then this script will initially hide the button, but then show it if there are any query parameters ie: filters have been applied.
*/

(function ($, Drupal) {
  Drupal.behaviors.resetFilters = {
    attach: function (context, settings) {
      $(".form-submit[id^=edit-reset]").hide();
      if (window.location.search) {
        $(".form-submit[id^=edit-reset]").show();
      }
    },
  };
})(jQuery, Drupal);
🇺🇸United States SoCalErich

I have the same issue with D10 and BEF 6.0.3. Still no fix for this?

🇺🇸United States SoCalErich

So, I just figured it out. I have the TWIG Tweak module installed and was able to do this:

{{ drupal_block(node.field_sidebar_block.plugin_id) }} where "field_sidebar_block" is the name of my field on my node. Maybe this could help someone else.

THANKS

🇺🇸United States SoCalErich

I am experiencing the same thing. As a side note, I am using the Views AJAX History module which, even when using AJAX, it will add the search criteria query params to the browser URL so you can preserve deep linking. When this is added and you do your initial search by, in my case, choosing a checkbox that filters the results, I initially do not see the reset button, but if I immediately refresh the page with the query parameters in the URL, the reset button appears. So this is almost certainly an AJAX issue.

🇺🇸United States SoCalErich

So how do we install this with Drupal 10 then?

I added this to my patches section in composer.json:

"drupal/commerce_stock": {
    "3330022 - Drupal 10 compatibility (Fixed all tests)": "https://www.drupal.org/files/issues/2023-02-26/commerce-stock-d10-compat-3330022-17.patch"
}

but if I do composer require drupal/commerce_stock, I get

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - drupal/commerce_stock[1.0.0-alpha1, ..., 1.0.0-alpha4] require drupal/core ~8.0 -> found drupal/core[8.0.0-beta6, ..., 8.9.x-dev] but the package is fixed to 10.0.7 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
    - drupal/commerce_stock[1.0.0-alpha5, ..., 1.x-dev] require drupal/core ^8 || ^9 -> found drupal/core[8.0.0-beta6, ..., 8.9.x-dev, 9.0.0-alpha1, ..., 9.5.x-dev] but the package is fixed to 10.0.7 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
    - Root composer.json requires drupal/commerce_stock ^1.0 -> satisfiable by drupal/commerce_stock[1.0.0-alpha1, ..., 1.x-dev].

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
You can also try re-running composer require with an explicit version constraint, e.g. "composer require drupal/commerce_stock:*" to figure out if any version is installable, or "composer require drupal/commerce_stock:^2.1" if you know which you need.

Installation failed, reverting ./composer.json and ./composer.lock to their original content.
🇺🇸United States SoCalErich

Yeah after looking at this, I THINK this was the result of a failed dev deployment. I ended up just moving my known working local database up to dev and all was well. This is a new site with only a dev server at this point so it wasn't that big of a deal. Still don't know for sure what caused it but it's fine now. THANKS

🇺🇸United States SoCalErich

Hey sorry I was out of town. So I basically created a custom module called admin_template_overrides. In my .module file I added a hook_theme function like this:

<?php

function admin_template_overrides_theme($existing, $type, $theme, $path) {
  return [
    'paragraph__basic_text__default' => [
      'template' => 'paragraph--basic-text--default',
      'base hook' => 'paragraph'
    ],
    'paragraph__accordion' => [
      'template' => 'paragraph--accordion',
      'base hook' => 'paragraph'
    ],
    'paragraph__accordion_item' => [
      'template' => 'paragraph--accordion-item',
      'base hook' => 'paragraph'
    ],
  ];
}

I have many more paragraph templates in my actual site, but this is a watered down version for simplicity.

So this looks for specific theme templates and specifies which template in my custom module to use for it as an override. For my use case, I am specifically overriding paragraph templates. You may need to change the "base hook" value to something else if you are not doing this for paragraphs.

Then I created a templates directory in my custom module that has all the various templates that I need except all I do is extend my front end themes template. This way I don't have to have the template code in two different places. I can essentially edit my front end theme template and the custom module will just automatically extend it. This may not be the BEST way to do this, but it is working and doing what I needed.

So, for example, I have a file in the templates directory of my custom module called "paragraph--basic-text--default.html.twig" and all it has in the file is:

{% extends "@uswds_base_subtheme/paragraphs/paragraph--basic-text--default.html.twig" %}

where @uswds_base_subtheme is my front end theme.

Production build 0.69.0 2024