diff --git a/.gitattributes b/.gitattributes index 76ea8feeb..e7b792f84 100644 --- a/.gitattributes +++ b/.gitattributes @@ -42,6 +42,9 @@ *.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 *.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 +# PHPStan's baseline uses tabs instead of spaces. +core/.phpstan-baseline.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tabwidth=2 diff=php linguist-language=php + # Define binary file attributes. # - Do not treat them as text. # - Include binary diff in patches instead of "binary files differ." diff --git a/.github/workflows/deploy_branch.yml b/.github/workflows/deploy_branch.yml index 3cfae86f0..0ef7ffdc3 100644 --- a/.github/workflows/deploy_branch.yml +++ b/.github/workflows/deploy_branch.yml @@ -10,28 +10,23 @@ jobs: deploy: name: Deploy Artifact runs-on: ubuntu-latest - env: - DRUPAL_DATABASE_NAME: drupal - DRUPAL_DATABASE_USERNAME: drupal - DRUPAL_DATABASE_PASSWORD: drupal - DRUPAL_DATABASE_HOST: mysql container: image: pookmish/drupal8ci:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | vendor docroot/core docroot/libraries docroot/modules/contrib - key: 4.x-20240206-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + key: 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} restore-keys: | - 4.x-20240206-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} - 4.x-20240206-${{ hashFiles('composer.json') }}- - 4.x-20240206- + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- + 4.x-${{ hashFiles('blt/blt.yml') }}- - name: Install SSH key uses: shimataro/ssh-key-action@v2 with: @@ -39,12 +34,11 @@ jobs: name: id_rsa known_hosts: ${{ secrets.KNOWN_HOSTS }} if_key_exists: fail - - run: git config --system --add safe.directory '*' - name: Deploy Artifact run: | - git config --global user.email "sws-developers@lists.stanford.edu" - git config --global user.name "Github Actions" - ssh-keyscan -t rsa svn-23450.prod.hosting.acquia.com >> /root/.ssh/known_hosts - composer install -n - blt blt:telemetry:disable --no-interaction + git config --system --add safe.directory '*' && + git config --global user.email "sws-developers@lists.stanford.edu" && + git config --global user.name "Github Actions" && + ssh-keyscan -t rsa svn-23450.prod.hosting.acquia.com >> /root/.ssh/known_hosts && + composer install -n && blt deploy -v -n diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 8b90fdd38..7d365b1b5 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -14,7 +14,7 @@ jobs: pr-labeler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: codelytv/pr-size-labeler@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..7c63099b0 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,74 @@ +# .github/workflows/release.yml +# This workflow automates the release and production deploy process. +# +# When a release branch is merged into the main branch it: +# - Creates a new tag and release +# - Creates a code artifact and pushes it to Acquia for deployment +name: Release + +on: + pull_request: + types: [ closed ] + +jobs: + build: + runs-on: ubuntu-latest + permissions: write-all + if: github.event.pull_request.merged + container: + image: pookmish/drupal8ci:latest + steps: + - name: Get Next Release + id: tag + uses: K-Phoen/semver-release-action@master + with: + release_strategy: none + release_branch: main + tag_format: "%major%.%minor%.%patch%" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Creating new release for ${{ steps.tag.outputs.tag }} + if: ${{ steps.tag.outputs.tag }} + uses: ncipollo/release-action@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + name: ${{ steps.tag.outputs.tag }} + tag: ${{ steps.tag.outputs.tag }} + commit: ${{ github.sha }} + generateReleaseNotes: true + makeLatest: true + - name: Install SSH key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.ACQUIA_SSH_KEY }} + name: id_rsa + known_hosts: ${{ secrets.KNOWN_HOSTS }} + if_key_exists: fail + - uses: actions/checkout@v4 + if: ${{ steps.tag.outputs.tag }} + with: + ref: ${{ github.sha }} + - name: Restore Cache + if: ${{ steps.tag.outputs.tag }} + uses: actions/cache@v4 + with: + path: | + vendor + docroot/core + docroot/libraries + docroot/modules/contrib + key: 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + restore-keys: | + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- + 4.x-${{ hashFiles('blt/blt.yml') }}- + - name: Deploy Tag + if: ${{ steps.tag.outputs.tag }} + run: | + git config --system --add safe.directory '*' && + git config --global user.email "sws-developers@lists.stanford.edu" && + git config --global user.name "Github Actions" && + ssh-keyscan -t rsa svn-23450.prod.hosting.acquia.com >> /root/.ssh/known_hosts && + composer install -n && + blt deploy --tag=$(date +'%Y-%m-%d')"_"${{ steps.tag.outputs.tag }} --commit-msg=${{ steps.tag.outputs.tag }} --no-interaction diff --git a/.github/workflows/tag_commits_to_main.yml b/.github/workflows/tag_commits_to_main.yml deleted file mode 100644 index 7f034ad88..000000000 --- a/.github/workflows/tag_commits_to_main.yml +++ /dev/null @@ -1,18 +0,0 @@ -# .github/workflows/tag_commits_to_main.yml -name: Tag Commits to Main - -on: - pull_request: - types: closed - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Tag - uses: K-Phoen/semver-release-action@master - with: - release_branch: main - tag_format: "%major%.%minor%.%patch%" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index be2f7caca..f425a3688 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,15 +5,16 @@ name: PHPUnit and Acceptance Tests # Allow this workflow to be called from other workflows. on: [workflow_call] +# Cancel previous runs of this workflow in the same branch if they're still in +# progress. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: phpunit: name: PHPUnit Coverage Tests runs-on: ubuntu-latest - env: - DRUPAL_DATABASE_NAME: drupal - DRUPAL_DATABASE_USERNAME: drupal - DRUPAL_DATABASE_PASSWORD: drupal - DRUPAL_DATABASE_HOST: mysql container: image: pookmish/drupal8ci:latest services: @@ -28,36 +29,38 @@ jobs: - 33306:3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | vendor docroot/core docroot/libraries docroot/modules/contrib - key: 4.x-20240206-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + key: 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} restore-keys: | - 4.x-20240206-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} - 4.x-20240206-${{ hashFiles('composer.json') }}- - 4.x-20240206- - - run: git config --system --add safe.directory '*' + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- + 4.x-${{ hashFiles('blt/blt.yml') }}- - name: Run Unit Tests # env: # CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} run: | - composer install -n - blt blt:telemetry:disable --no-interaction + git config --system --add safe.directory '*' && + composer install -n && blt tests:phpunit:coverage --no-interaction - name: Save Test Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: unit-tests-results path: $GITHUB_WORKSPACE/artifacts - acceptance: - name: Codeception Acceptance Tests + test_new_site: + name: Test New Site + strategy: + matrix: + suite: [acceptance, functional] runs-on: ubuntu-latest env: DRUPAL_DATABASE_NAME: drupal @@ -66,7 +69,11 @@ jobs: DRUPAL_DATABASE_HOST: mysql container: image: pookmish/drupal8ci:latest + options: '--network-alias drupal8ci' services: + selenium: + image: selenium/standalone-chrome:latest + options: '--shm-size="2g"' mysql: image: mysql:5.7 env: @@ -78,53 +85,55 @@ jobs: - 33306:3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | vendor docroot/core docroot/libraries docroot/modules/contrib - key: 4.x-20231101-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + key: 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} restore-keys: | - 4.x-20231101-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} - 4.x-20231101-${{ hashFiles('composer.json') }}- - 4.x-20231101- - - run: git config --system --add safe.directory '*' - - name: Run tests + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- + 4.x-${{ hashFiles('blt/blt.yml') }}- + - name: Install Site run: | - rm -rf /var/www/html - ln -snf $GITHUB_WORKSPACE /var/www/html - apachectl stop - apachectl start - composer install -n - blt blt:telemetry:disable --no-interaction - blt drupal:install -n - drush role:perm:add anonymous 'access content' - drush xmlsitemap:rebuild - blt codeception --suite=acceptance + git config --system --add safe.directory '*' && + rm -rf /var/www/html && + ln -snf $GITHUB_WORKSPACE /var/www/html && + apachectl stop && + apachectl start && + composer install -n && + blt drupal:install -n && + drush role:perm:add anonymous 'access content' && + drush xmlsitemap:rebuild && + mkdir -p artifacts/_data/ + - name: Run tests + run: blt codeception --suite=${{ matrix.suite }} - name: Save Test Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: - name: acceptance-tests-results + name: newsite-${{ matrix.suite }}-tests path: artifacts - functional: - name: Codeception Functional Tests + test_sustainability_sync: + name: Test Sustainability Site Sync runs-on: ubuntu-latest + container: + image: pookmish/drupal8ci:latest + options: '--network-alias drupal8ci' env: DRUPAL_DATABASE_NAME: drupal DRUPAL_DATABASE_USERNAME: drupal DRUPAL_DATABASE_PASSWORD: drupal DRUPAL_DATABASE_HOST: mysql - container: - image: pookmish/drupal8ci:latest - options: '--network-alias drupal8ci' + STANFORD_ENCRYPT: ${{secrets.STANFORD_ENCRYPT}} services: selenium: - image: selenium/standalone-chrome:115.0 + image: selenium/standalone-chrome:latest options: '--shm-size="2g"' mysql: image: mysql:5.7 @@ -137,45 +146,33 @@ jobs: - 33306:3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - uses: actions/checkout@v3 + - name: Install SSH key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.ACQUIA_SSH_KEY }} + name: id_rsa + known_hosts: ${{ secrets.KNOWN_HOSTS }} + if_key_exists: fail + - uses: actions/checkout@v4 - name: Restore Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | vendor docroot/core docroot/libraries docroot/modules/contrib - docroot/modules/custom - key: 4.x-20231101-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + key: 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} restore-keys: | - 4.x-20231101-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} - 4.x-20231101-${{ hashFiles('composer.json') }}- - 4.x-20231101- - - run: git config --system --add safe.directory '*' - - name: Install Site + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} + 4.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- + 4.x-${{ hashFiles('blt/blt.yml') }}- + - name: Sync Database run: | - rm -rf /var/www/html - ln -snf $GITHUB_WORKSPACE /var/www/html - apachectl stop - apachectl start - composer install -n - blt blt:telemetry:disable --no-interaction - blt drupal:install -n - drush role:perm:add anonymous 'access content' - drush xmlsitemap:rebuild - mkdir -p artifacts/_data/ - - name: Run tests - run: blt codeception --suite=functional - - name: Save Test Results - uses: actions/upload-artifact@v3 - if: always() - with: - name: functional-tests-results - path: artifacts - -# Cancel previous runs of this workflow in the same branch if they're still in -# progress. -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true + git config --system --add safe.directory '*' && + mysql -h mysql -P 3306 -u root -pdrupal -e 'SET GLOBAL max_allowed_packet=67108864;' && + rm -rf /var/www/html && + ln -snf $GITHUB_WORKSPACE /var/www/html && + composer install -n && + blt settings && + blt drupal:sync --site=sustainability -n diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e782703..feb4d04a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # ACE SDSSGryphon +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [4.4.0] - 2024-05-16 + +### Added +ff26b069 SDSS-1290: Updated Github action CI release workflow (#440) +193a1115 SDSS-1256: Added Sustainability Site Sync test and improved test automation (#431) +61cff2f8 SDSS-1269: Provisioned hph (#425) +d3cd6d37 SDSS-1262: Provision for techtransferfordefense (#424) +f4715d8e SDSS-1272: Enable search by title (#420) +a0cdcc5c SDSS-1261: List of media mention spacing (#413) +9b0fa49e SDSS-1220: Add Media Mentions list display to News list paragraph (#409) + +### Fixed +df338cfe SDSS-1292: Change headline CSS specificity (#436) +faf600ac SDSS-1286: Added admin css to stanford_profile_admin_theme and hid heading fields (#433) +89d92a5a SDSS-1249: Button color fix (#406) + +### Changed +bd45e591 SDSS-1266: Excluded Media Mention News from Newsroom Search (#427) +4792b275 SDSS-1266: Excluded Media Mention News from Site Search (#422) +9d5ebc1d SDSS-1257: Maintenance and dependency updates (#401) +d999afe4 SDSS-1191: Changed headline and dek for xl-md breakpoint (#389) +0472d25a SDSS-1263: Change link colors for all inline textual links (#412) +a6932607 SDSS-252: Allow Events List paragraph to be filtered by multiple taxonomies (#407) +bad9fb7f SDSS-1265: Allow adding Basic Pages to Newsroom Menu from Edit Node form (#411) +b054c483 SDSS-1235: Local footer config update (#405) +001759e3 SDSS-1252: Added additional terms to contextual filter for people list paragraph (#408) + +### Removed +fb883610 SDSS-1218: Disabled page cache module (#426) +3ed39a3b SDSS-1255: Uninstall earth_news_importer (#415) +6f9cc082 SDSS-1182: Remove Magazine Topics taxonomy (#410) + + +-------------------------------------------------------------------------------- + + 4.3.2 -------------------------------------------------------------------------------- _Release Date: 2024-04-23_ diff --git a/blt/blt.yml b/blt/blt.yml index 16d96403a..9906bc0ff 100644 --- a/blt/blt.yml +++ b/blt/blt.yml @@ -47,6 +47,7 @@ multisites: - hackingfordefense - hawaii - hopkinsmarinestation + - hph - hydrogen - mce2050 - naturalcapitalproject @@ -69,6 +70,7 @@ multisites: - sustainability - sustainability_accelerator - sustainablemobility + - techtransferfordefense - understand_energy_course - understandenergy - water diff --git a/composer.json b/composer.json index e983166b0..64d20f156 100644 --- a/composer.json +++ b/composer.json @@ -74,7 +74,7 @@ "cweagans/composer-patches": "^1.6", "drupal/acquia_connector": "dev-4.x", "drupal/acquia_purge": "^1.1", - "drupal/address": "^1.2", + "drupal/address": "^2.0", "drupal/admin_toolbar": "^3.1", "drupal/allowed_formats": "^3.0", "drupal/auto_entitylabel": "^3.0@beta", @@ -97,7 +97,7 @@ "drupal/core-recommended": "^10", "drupal/cshs": "^4.0", "drupal/default_content": "^2.0@alpha", - "drupal/diff": "^1.0@RC", + "drupal/diff": "1.1.0", "drupal/display_field_copy": "^2.0", "drupal/domain_301_redirect": "^2.0", "drupal/ds": "^3.3", @@ -110,10 +110,10 @@ "drupal/field_encrypt": "^3.0", "drupal/field_formatter_class": "^1.5", "drupal/field_group": "^3.0@rc", + "drupal/field_label": "^1.4", "drupal/field_permissions": "^1.0@RC", "drupal/field_validation": "^1.0-alpha", - "drupal/file_mdm_exif": "^2.4", - "drupal/file_mdm_font": "^2.4", + "drupal/file_mdm": "^2.4 || ^3.0", "drupal/flat_taxonomy": "^2.0", "drupal/fontawesome": "^2.19", "drupal/google_analytics": "^4.0", @@ -149,7 +149,6 @@ "drupal/nobots": "^1.0", "drupal/node_revision_delete": "^1.0@RC", "drupal/oembed_lazyload": "^2.0", - "drupal/page_cache_query_ignore": "^2.2", "drupal/page_manager": "^4.0@beta", "drupal/paragraphs": "^1.11", "drupal/paragraphs_edit": "^3.0", @@ -182,11 +181,10 @@ "drupal/views_contextual_filters_or": "^1.3", "drupal/views_custom_cache_tag": "^1.2", "drupal/views_infinite_scroll": "^2.0", - "drupal/views_rss": "^2.0", "drupal/views_taxonomy_term_name_depth": "^7.0", "drupal/webp": "^1.0@beta", "drupal/xmlsitemap": "^1.0", - "drush/drush": "^11.1", + "drush/drush": "^12", "harvesthq/chosen": "^1.8", "onlyextart/colorbox": "dev-master#e58476becbc89dc671093d1bcd9f99b2167fa8f7", "sainsburys/guzzle-oauth2-plugin": "^3.0", @@ -200,9 +198,9 @@ "su-sws/react_paragraphs": "^8.2", "su-sws/stanford_actions": "^8.2", "su-sws/stanford_fields": "^8.2", - "su-sws/stanford_media": "^10.0", + "su-sws/stanford_media": "^11.0", "su-sws/stanford_migrate": "^8.3", - "su-sws/stanford_profile_helper": "<9.5.0", + "su-sws/stanford_profile_helper": "^9.6", "su-sws/stanford_samlauth": "^1.0", "su-sws/stanford_syndication": "^1.0" }, @@ -305,7 +303,7 @@ "Comment out GA conflict in Google Tag": "patches/contrib/google_tag-ga_conflict.patch" }, "drupal/hook_event_dispatcher": { - "https://www.drupal.org/project/hook_event_dispatcher/issues/3354751": "https://www.drupal.org/files/issues/2023-04-17/hook_event_dispatcher-4.x-3354751.patch" + "https://www.drupal.org/project/hook_event_dispatcher/issues/3354751": "https://www.drupal.org/files/issues/2024-03-14/hook_event_dispatcher-4.x-3354751-7.patch" }, "drupal/menu_block": { "https://www.drupal.org/project/menu_block/issues/3271218": "https://www.drupal.org/files/issues/2022-04-29/menu_block_rendered_empty-3271218-17.patch" @@ -326,8 +324,7 @@ "Ui Patterns Views Fixes": "patches/contrib/ui_patterns_views-preview.patch" }, "su-sws/stanford_profile_helper": { - "Remove paragraph layout restrictions from stanford_layout_paragraphs": "patches/stanford/stanford_layout_paragraphs.patch", - "Fix bookapa test": "patches/stanford/stanford_publication_apatest.patch" + "Remove paragraph layout restrictions from stanford_layout_paragraphs": "patches/stanford/stanford_layout_paragraphs.patch" } } }, diff --git a/composer.lock b/composer.lock index 181cb24e1..db646a23a 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "715e343bcb55f41cb6f07e8a2970428f", + "content-hash": "1cac45512321879e57b03045a4f8e950", "packages": [ { "name": "acquia/blt", - "version": "13.7.3", + "version": "13.7.4", "source": { "type": "git", "url": "https://github.com/acquia/blt.git", - "reference": "c4fc898409daa402731126abf3015e2a9b67c67a" + "reference": "0a2c6da746c2b59ab3569cb2c41b021655b1f3bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/acquia/blt/zipball/c4fc898409daa402731126abf3015e2a9b67c67a", - "reference": "c4fc898409daa402731126abf3015e2a9b67c67a", + "url": "https://api.github.com/repos/acquia/blt/zipball/0a2c6da746c2b59ab3569cb2c41b021655b1f3bd", + "reference": "0a2c6da746c2b59ab3569cb2c41b021655b1f3bd", "shasum": "" }, "require": { @@ -25,23 +25,23 @@ "composer-plugin-api": "^2.0", "composer-runtime-api": "^2.0", "consolidation/comments": "^1.0", - "consolidation/config": "^1.0.0 || ^2.0.0", - "consolidation/robo": "^3 || ^4", - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "consolidation/config": "^2.0.0", + "consolidation/robo": "^4", + "dflydev/dot-access-data": "^3", "doctrine/annotations": "^1.10.0", - "drupal/core": "^9.0.0-alpha1 || ^10.0.0-alpha1", - "drush/drush": "^11 || ^12", + "drupal/core": "^10.0.0", + "drush/drush": "^12", "enlightn/security-checker": "^1.3", "ext-json": "*", - "grasmash/yaml-cli": "^2.0.0 || ^3.0.0", + "grasmash/yaml-cli": "^3.0.0", "grasmash/yaml-expander": "^3.0.2", "loophp/phposinfo": "^1.7.1", - "php": ">=7.4", - "symfony/config": "^4.4 || ^6", - "symfony/console": "^4.4.6 || ^6", - "symfony/twig-bridge": "^3.4 || ^4 || ^5 || ^6", - "symfony/yaml": "^4.4 || ^5 || ^6", - "webmozart/path-util": "^2.3" + "php": ">=8.1", + "symfony/config": "^6", + "symfony/console": "^6", + "symfony/filesystem": "^6", + "symfony/twig-bridge": "^6", + "symfony/yaml": "^6" }, "conflict": { "acquia/blt-behat": "<=1.0.0" @@ -93,9 +93,9 @@ "support": { "docs": "https://docs.acquia.com/blt/", "issues": "https://github.com/acquia/blt/issues", - "source": "https://github.com/acquia/blt/tree/13.7.3" + "source": "https://github.com/acquia/blt/tree/13.7.4" }, - "time": "2023-10-17T16:40:24+00:00" + "time": "2023-11-16T18:40:51+00:00" }, { "name": "acquia/drupal-environment-detector", @@ -152,31 +152,31 @@ }, { "name": "asm89/stack-cors", - "version": "v2.1.1", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" + "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", - "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea", + "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea", "shasum": "" }, "require": { - "php": "^7.2|^8.0", - "symfony/http-foundation": "^4|^5|^6", - "symfony/http-kernel": "^4|^5|^6" + "php": "^7.3|^8.0", + "symfony/http-foundation": "^5.3|^6|^7", + "symfony/http-kernel": "^5.3|^6|^7" }, "require-dev": { - "phpunit/phpunit": "^7|^9", + "phpunit/phpunit": "^9", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" } }, "autoload": { @@ -202,9 +202,9 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" + "source": "https://github.com/asm89/stack-cors/tree/v2.2.0" }, - "time": "2022-01-18T09:12:03+00:00" + "time": "2023-11-14T13:51:46+00:00" }, { "name": "caxy/php-htmldiff", @@ -269,49 +269,48 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "2.6.2", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980" + "reference": "74c2dc687e124bfc4001e73e9346b33067e2ec2b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980", - "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/74c2dc687e124bfc4001e73e9346b33067e2ec2b", + "reference": "74c2dc687e124bfc4001e73e9346b33067e2ec2b", "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" + "php": ">=8.1.0", + "psr/event-dispatcher": "^1.0", + "psr/log": "^3.0", + "symfony/console": "^6.3", + "symfony/dependency-injection": "^6.3.2", + "symfony/filesystem": "^6.3", + "symfony/string": "^6.3", + "twig/twig": "^3.4" }, "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" + "chi-teck/drupal-coder-extension": "^2.0.0-beta3", + "drupal/coder": "8.3.23", + "drupal/core": "10.3.x-dev", + "ext-simplexml": "*", + "phpspec/prophecy-phpunit": "^2.2", + "phpunit/phpunit": "^9.6", + "squizlabs/php_codesniffer": "^3.9", + "symfony/var-dumper": "^6.4", + "symfony/yaml": "^6.3", + "vimeo/psalm": "^5.22.2" }, "bin": [ "bin/dcg" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, "autoload": { "psr-4": { "DrupalCodeGenerator\\": "src" @@ -324,9 +323,9 @@ "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" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.5.0" }, - "time": "2022-11-11T15:34:04+00:00" + "time": "2024-04-11T11:23:44+00:00" }, { "name": "citation-style-language/locales", @@ -350,28 +349,28 @@ }, { "name": "commerceguys/addressing", - "version": "v1.4.2", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" + "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/a5af40bd4b6edee5101e182085e67b7ff5d4a89b", + "reference": "a5af40bd4b6edee5101e182085e67b7ff5d4a89b", "shasum": "" }, "require": { - "doctrine/collections": "^1.2 || ^2.0", - "php": ">=7.3" + "doctrine/collections": "^1.6 || ^2.0", + "php": ">=8.0" }, "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" + "mikey179/vfsstream": "^1.6.11", + "phpunit/phpunit": "^9.6", + "squizlabs/php_codesniffer": "^3.7", + "symfony/validator": "^5.4 || ^6.3 || ^7.0" }, "suggest": { "symfony/validator": "to validate addresses" @@ -379,7 +378,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -408,9 +407,9 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" + "source": "https://github.com/commerceguys/addressing/tree/v2.2.0" }, - "time": "2023-02-15T10:11:14+00:00" + "time": "2024-02-25T11:22:16+00:00" }, { "name": "composer/installers", @@ -565,16 +564,16 @@ }, { "name": "composer/semver", - "version": "3.3.2", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { @@ -624,9 +623,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -642,29 +641,29 @@ "type": "tidelift" } ], - "time": "2022-04-01T19:23:25+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "consolidation/annotated-command", - "version": "4.9.2", + "version": "4.10.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "b5255dcbee1de95036185062a103dabc622224de" + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de", - "reference": "b5255dcbee1de95036185062a103dabc622224de", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c", + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.3.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" + "symfony/console": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7" }, "require-dev": { "composer-runtime-api": "^2.0", @@ -696,9 +695,9 @@ "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.9.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.10.0" }, - "time": "2023-12-26T14:30:50+00:00" + "time": "2024-04-05T21:05:39+00:00" }, { "name": "consolidation/comments", @@ -864,32 +863,32 @@ }, { "name": "consolidation/log", - "version": "3.0.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "caaad9d70dae54eb49002666f000e3c607066878" + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878", - "reference": "caaad9d70dae54eb49002666f000e3c607066878", + "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015", + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015", "shasum": "" }, "require": { "php": ">=8.0.0", "psr/log": "^3", - "symfony/console": "^5 || ^6" + "symfony/console": "^5 || ^6 || ^7" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20", + "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" + "platform": { + "php": "8.2.17" } }, "autoload": { @@ -910,36 +909,36 @@ "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" + "source": "https://github.com/consolidation/log/tree/3.1.0" }, - "time": "2022-04-05T16:53:32+00:00" + "time": "2024-04-04T23:50:25+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.3.2", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540", + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540", "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" + "symfony/console": "^4 || ^5 || ^6 || ^7", + "symfony/finder": "^4 || ^5 || ^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", "phpunit/phpunit": "^7 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4 || ^5 || ^6", - "symfony/yaml": "^4 || ^5 || ^6", + "symfony/var-dumper": "^4 || ^5 || ^6 || ^7", + "symfony/yaml": "^4 || ^5 || ^6 || ^7", "yoast/phpunit-polyfills": "^1" }, "suggest": { @@ -964,9 +963,9 @@ "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.3.2" + "source": "https://github.com/consolidation/output-formatters/tree/4.5.0" }, - "time": "2023-07-06T04:45:41+00:00" + "time": "2024-04-02T15:18:52+00:00" }, { "name": "consolidation/robo", @@ -1098,23 +1097,23 @@ }, { "name": "consolidation/site-alias", - "version": "4.0.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5" + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2", + "consolidation/config": "^1.2.1 || ^2 || ^3", "php": ">=7.4", - "symfony/filesystem": "^5.4 || ^6", - "symfony/finder": "^5 || ^6" + "symfony/filesystem": "^5.4 || ^6 || ^7", + "symfony/finder": "^5 || ^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1151,30 +1150,30 @@ "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.1" + "source": "https://github.com/consolidation/site-alias/tree/4.1.0" }, - "time": "2023-04-29T17:18:10+00:00" + "time": "2024-04-05T15:58:04+00:00" }, { "name": "consolidation/site-process", - "version": "5.2.0", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d" + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", "shasum": "" }, "require": { - "consolidation/config": "^2", + "consolidation/config": "^2 || ^3", "consolidation/site-alias": "^3 || ^4", "php": ">=8.0.14", - "symfony/console": "^5.4 || ^6", - "symfony/process": "^6" + "symfony/console": "^5.4 || ^6 || ^7", + "symfony/process": "^6 || ^7" }, "require-dev": { "phpunit/phpunit": "^9", @@ -1208,9 +1207,9 @@ "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" + "source": "https://github.com/consolidation/site-process/tree/5.4.0" }, - "time": "2022-12-06T17:57:16+00:00" + "time": "2024-04-06T00:00:28+00:00" }, { "name": "cweagans/composer-patches", @@ -1563,16 +1562,16 @@ }, { "name": "doctrine/collections", - "version": "2.2.0", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "07e16cd7b80a2cffed99e36b541876af172f0257" + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/07e16cd7b80a2cffed99e36b541876af172f0257", - "reference": "07e16cd7b80a2cffed99e36b541876af172f0257", + "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59", + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59", "shasum": "" }, "require": { @@ -1629,7 +1628,7 @@ ], "support": { "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/2.2.0" + "source": "https://github.com/doctrine/collections/tree/2.2.2" }, "funding": [ { @@ -1645,7 +1644,7 @@ "type": "tidelift" } ], - "time": "2024-02-25T22:55:36+00:00" + "time": "2024-04-18T06:56:21+00:00" }, { "name": "doctrine/deprecations", @@ -1865,16 +1864,16 @@ }, { "name": "dompdf/dompdf", - "version": "v2.0.4", + "version": "v2.0.8", "source": { "type": "git", "url": "https://github.com/dompdf/dompdf.git", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" + "reference": "c20247574601700e1f7c8dab39310fca1964dc52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52", + "reference": "c20247574601700e1f7c8dab39310fca1964dc52", "shasum": "" }, "require": { @@ -1882,7 +1881,7 @@ "ext-mbstring": "*", "masterminds/html5": "^2.0", "phenx/php-font-lib": ">=0.5.4 <1.0.0", - "phenx/php-svg-lib": ">=0.3.3 <1.0.0", + "phenx/php-svg-lib": ">=0.5.2 <1.0.0", "php": "^7.1 || ^8.0" }, "require-dev": { @@ -1921,9 +1920,9 @@ "homepage": "https://github.com/dompdf/dompdf", "support": { "issues": "https://github.com/dompdf/dompdf/issues", - "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" + "source": "https://github.com/dompdf/dompdf/tree/v2.0.8" }, - "time": "2023-12-12T20:19:39+00:00" + "time": "2024-04-29T13:06:17+00:00" }, { "name": "drupal/acquia_connector", @@ -1931,12 +1930,11 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/acquia_connector.git", - "reference": "d9e85fd925102e5cb2d29adb2656a6e00df5701b" + "reference": "6e41abe795f16d1fd536d77eea504a3d6ade2a04" }, "require": { "drupal/core": ">=8.9 <11.0.0-stable", - "ext-json": "*", - "php": "^7.4 || ^8" + "ext-json": "*" }, "type": "drupal-module", "extra": { @@ -1944,8 +1942,8 @@ "dev-4.x": "4.x-dev" }, "drupal": { - "version": "4.0.5+1-dev", - "datestamp": "1691011930", + "version": "4.0.6+1-dev", + "datestamp": "1714408988", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -2061,31 +2059,33 @@ }, { "name": "drupal/address", - "version": "1.12.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.12" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" + "url": "https://ftp.drupal.org/files/projects/address-2.0.1.zip", + "reference": "2.0.1", + "shasum": "47e166dc46b1a2e17470738e8321bc20fa9e8e24" }, "require": { - "commerceguys/addressing": "^1.4.2", - "drupal/core": "^9.2 || ^10", - "php": "^7.3 || ^8.0" + "commerceguys/addressing": "^2.1.1", + "drupal/core": "^9.5 || ^10", + "php": "^8.0" }, "require-dev": { - "drupal/token": "^1.0" + "drupal/diff": "^1", + "drupal/feeds": "^3", + "drupal/token": "^1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1684710176", + "version": "2.0.1", + "datestamp": "1708373992", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2484,17 +2484,17 @@ }, { "name": "drupal/change_labels", - "version": "1.3.2", + "version": "1.3.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/change_labels.git", - "reference": "1.3.2" + "reference": "1.3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/change_labels-1.3.2.zip", - "reference": "1.3.2", - "shasum": "b72c3f4c0f61430ee7843523e01c3b41e12b4fd3" + "url": "https://ftp.drupal.org/files/projects/change_labels-1.3.4.zip", + "reference": "1.3.4", + "shasum": "05a53ce4f1833fa31213bb2d20924aa1a9d91886" }, "require": { "drupal/core": "^9.2 || ^10", @@ -2505,8 +2505,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.3.2", - "datestamp": "1695722251", + "version": "1.3.4", + "datestamp": "1711918840", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2682,17 +2682,17 @@ }, { "name": "drupal/colorbox", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/colorbox.git", - "reference": "2.0.1" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/colorbox-2.0.1.zip", - "reference": "2.0.1", - "shasum": "ed5c40e3abc8f9d7ab6b1dc7f70958de266db404" + "url": "https://ftp.drupal.org/files/projects/colorbox-2.0.2.zip", + "reference": "2.0.2", + "shasum": "65b83ab0543c3d09183f96a5066b606f4acda0cc" }, "require": { "drupal/core": "^8.8 || ^9 || ^10" @@ -2703,8 +2703,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1684418527", + "version": "2.0.2", + "datestamp": "1709927273", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2712,7 +2712,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -2732,12 +2732,8 @@ "role": "Maintainer" }, { - "name": "RenatoG", + "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.", @@ -2832,10 +2828,18 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "benjifisher", + "homepage": "https://www.drupal.org/user/683300" + }, { "name": "colan", "homepage": "https://www.drupal.org/user/58704" }, + { + "name": "dqd", + "homepage": "https://www.drupal.org/user/1001934" + }, { "name": "ergonlogic", "homepage": "https://www.drupal.org/user/368613" @@ -2954,20 +2958,20 @@ }, { "name": "drupal/config_ignore", - "version": "3.2.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_ignore.git", - "reference": "8.x-3.2" + "reference": "8.x-3.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "00335fc1ddeb4ed93f245dd6963d99b3c084c052" + "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "4446811ecb023820a57c227d35c034e0d4363a70" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9 || ^10 || ^11" }, "require-dev": { "drupal/config_filter": "^1.8||^2.2", @@ -2976,8 +2980,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1705226226", + "version": "8.x-3.3", + "datestamp": "1713299496", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2986,7 +2990,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -3185,20 +3189,20 @@ }, { "name": "drupal/config_split", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_split.git", - "reference": "2.0.0" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_split-2.0.0.zip", - "reference": "2.0.0", - "shasum": "be9fd0aba1206e0f19e8448f69d4210e53dae069" + "url": "https://ftp.drupal.org/files/projects/config_split-2.0.1.zip", + "reference": "2.0.1", + "shasum": "e033a277995753c564f3a4681b88cd112e19ba2a" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9 || ^10 || ^11" }, "conflict": { "drush/drush": "<10" @@ -3213,8 +3217,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1707999066", + "version": "2.0.1", + "datestamp": "1711022056", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3433,16 +3437,16 @@ }, { "name": "drupal/core", - "version": "10.1.8", + "version": "10.2.5", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "fe4fd82ecd1f70db397c58d4360e15de0b4785c7" + "reference": "dddd242b74f40df892a7f16a48245c3b76d9b003" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/fe4fd82ecd1f70db397c58d4360e15de0b4785c7", - "reference": "fe4fd82ecd1f70db397c58d4360e15de0b4785c7", + "url": "https://api.github.com/repos/drupal/core/zipball/dddd242b74f40df892a7f16a48245c3b76d9b003", + "reference": "dddd242b74f40df892a7f16a48245c3b76d9b003", "shasum": "" }, "require": { @@ -3472,23 +3476,26 @@ "php": ">=8.1.0", "psr/log": "^3.0", "sebastian/diff": "^4", - "symfony/console": "^6.3", - "symfony/dependency-injection": "^6.3", - "symfony/event-dispatcher": "^6.3", - "symfony/http-foundation": "^6.3", - "symfony/http-kernel": "^6.3", - "symfony/mime": "^6.3", + "symfony/console": "^6.4", + "symfony/dependency-injection": "^6.4", + "symfony/event-dispatcher": "^6.4", + "symfony/filesystem": "^6.4", + "symfony/finder": "^6.4", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.4", + "symfony/mailer": "^6.4", + "symfony/mime": "^6.4", "symfony/polyfill-iconv": "^1.26", - "symfony/process": "^6.3", - "symfony/psr-http-message-bridge": "^2.1", - "symfony/routing": "^6.3", - "symfony/serializer": "^6.3", - "symfony/validator": "^6.3", - "symfony/yaml": "^6.3", + "symfony/process": "^6.4", + "symfony/psr-http-message-bridge": "^2.1|^6.4", + "symfony/routing": "^6.4", + "symfony/serializer": "^6.4", + "symfony/validator": "^6.4", + "symfony/yaml": "^6.4", "twig/twig": "^3.5.0" }, "conflict": { - "drush/drush": "<8.1.10" + "drush/drush": "<12.4.3" }, "replace": { "drupal/core-annotation": "self.version", @@ -3587,13 +3594,13 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.1.8" + "source": "https://github.com/drupal/core/tree/10.2.5" }, - "time": "2024-01-16T21:11:11+00:00" + "time": "2024-04-03T07:19:20+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.2.3", + "version": "10.2.5", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -3637,76 +3644,80 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.5" }, "time": "2024-01-26T14:59:30+00:00" }, { "name": "drupal/core-recommended", - "version": "10.1.8", + "version": "10.2.5", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "0e4a17b65e5dd2aedf66461e7c3658a35adc4924" + "reference": "bd7fe9e734a82762814d9c31255cd362d9c044f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/0e4a17b65e5dd2aedf66461e7c3658a35adc4924", - "reference": "0e4a17b65e5dd2aedf66461e7c3658a35adc4924", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/bd7fe9e734a82762814d9c31255cd362d9c044f1", + "reference": "bd7fe9e734a82762814d9c31255cd362d9c044f1", "shasum": "" }, "require": { - "asm89/stack-cors": "~v2.1.1", - "composer/semver": "~3.3.2", + "asm89/stack-cors": "~v2.2.0", + "composer/semver": "~3.4.0", "doctrine/annotations": "~1.14.3", - "doctrine/deprecations": "~v1.1.1", + "doctrine/deprecations": "~1.1.2", "doctrine/lexer": "~2.1.0", - "drupal/core": "10.1.8", - "egulias/email-validator": "~4.0.1", - "guzzlehttp/guzzle": "~7.7.0", - "guzzlehttp/psr7": "~2.5.0", - "masterminds/html5": "~2.8.0", + "drupal/core": "10.2.5", + "egulias/email-validator": "~4.0.2", + "guzzlehttp/guzzle": "~7.8.1", + "guzzlehttp/promises": "~2.0.2", + "guzzlehttp/psr7": "~2.6.2", + "masterminds/html5": "~2.8.1", "mck89/peast": "~v1.15.4", "pear/archive_tar": "~1.4.14", "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.13", + "pear/pear-core-minimal": "~v1.10.14", "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.2", + "psr/http-client": "~1.0.3", "psr/http-factory": "~1.0.2", "psr/log": "~3.0.0", "ralouphie/getallheaders": "~3.0.3", "sebastian/diff": "~4.0.5", - "symfony/console": "~v6.3.0", - "symfony/dependency-injection": "~v6.3.0", - "symfony/deprecation-contracts": "~v3.3.0", - "symfony/error-handler": "~v6.3.0", - "symfony/event-dispatcher": "~v6.3.0", - "symfony/event-dispatcher-contracts": "~v3.3.0", - "symfony/http-foundation": "~v6.3.0", - "symfony/http-kernel": "~v6.3.0", - "symfony/mime": "~v6.3.0", - "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/polyfill-php83": "~v1.27.0", - "symfony/process": "~v6.3.0", - "symfony/psr-http-message-bridge": "~v2.2.0", - "symfony/routing": "~v6.3.0", - "symfony/serializer": "~v6.3.0", - "symfony/service-contracts": "~v3.3.0", - "symfony/string": "~v6.3.0", - "symfony/translation-contracts": "~v3.3.0", - "symfony/validator": "~v6.3.0", - "symfony/var-dumper": "~v6.3.0", - "symfony/var-exporter": "~v6.3.0", - "symfony/yaml": "~v6.3.0", - "twig/twig": "~v3.6.0" + "symfony/console": "~v6.4.1", + "symfony/dependency-injection": "~v6.4.1", + "symfony/deprecation-contracts": "~v3.4.0", + "symfony/error-handler": "~v6.4.0", + "symfony/event-dispatcher": "~v6.4.0", + "symfony/event-dispatcher-contracts": "~v3.4.0", + "symfony/filesystem": "~v6.4.0", + "symfony/finder": "~v6.4.0", + "symfony/http-foundation": "~v6.4.0", + "symfony/http-kernel": "~v6.4.1", + "symfony/mailer": "~v6.4.0", + "symfony/mime": "~v6.4.0", + "symfony/polyfill-ctype": "~v1.28.0", + "symfony/polyfill-iconv": "~v1.28.0", + "symfony/polyfill-intl-grapheme": "~v1.28.0", + "symfony/polyfill-intl-idn": "~v1.28.0", + "symfony/polyfill-intl-normalizer": "~v1.28.0", + "symfony/polyfill-mbstring": "~v1.28.0", + "symfony/polyfill-php83": "~v1.28.0", + "symfony/process": "~v6.4.0", + "symfony/psr-http-message-bridge": "~v6.4.0", + "symfony/routing": "~v6.4.1", + "symfony/serializer": "~v6.4.1", + "symfony/service-contracts": "~v3.4.0", + "symfony/string": "~v6.4.0", + "symfony/translation-contracts": "~v3.4.0", + "symfony/validator": "~v6.4.0", + "symfony/var-dumper": "~v6.4.0", + "symfony/var-exporter": "~v6.4.1", + "symfony/yaml": "~v6.4.0", + "twig/twig": "~v3.8.0" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -3718,13 +3729,13 @@ ], "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.1.8" + "source": "https://github.com/drupal/core-recommended/tree/10.2.5" }, - "time": "2024-01-16T21:11:11+00:00" + "time": "2024-04-03T07:19:20+00:00" }, { "name": "drupal/core_event_dispatcher", - "version": "4.0.0-rc1", + "version": "4.0.1", "require": { "drupal/core": "^9.3 || ^10", "drupal/hook_event_dispatcher": "*" @@ -3732,11 +3743,11 @@ "type": "metapackage", "extra": { "drupal": { - "version": "4.0.0-rc1", - "datestamp": "1691676068", + "version": "4.0.1", + "datestamp": "1710429583", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -3823,17 +3834,17 @@ }, { "name": "drupal/cshs", - "version": "4.0.1", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/cshs.git", - "reference": "4.0.1" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cshs-4.0.1.zip", - "reference": "4.0.1", - "shasum": "8048c92e2d6bdde259b23851d03fbc4650e00b2e" + "url": "https://ftp.drupal.org/files/projects/cshs-4.0.2.zip", + "reference": "4.0.2", + "shasum": "dc936684e50770d1c4ca541eccffba7d348a4a1c" }, "require": { "drupal/core": "^9.2 || ^10", @@ -3842,8 +3853,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.1", - "datestamp": "1704752696", + "version": "4.0.2", + "datestamp": "1710037257", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4246,6 +4257,10 @@ "homepage": "https://www.drupal.org/u/realityloop", "role": "Maintainer" }, + { + "name": "Junyor", + "homepage": "https://www.drupal.org/user/7006" + }, { "name": "lhangea", "homepage": "https://www.drupal.org/user/2743803" @@ -4381,17 +4396,17 @@ }, { "name": "drupal/dropzonejs", - "version": "2.8.0", + "version": "2.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dropzonejs.git", - "reference": "8.x-2.8" + "reference": "8.x-2.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dropzonejs-8.x-2.8.zip", - "reference": "8.x-2.8", - "shasum": "d330143503eef258e0b87a384d2d9ad8dcf03380" + "url": "https://ftp.drupal.org/files/projects/dropzonejs-8.x-2.10.zip", + "reference": "8.x-2.10", + "shasum": "72bee3bce2d29eace381edba1a7e0237db6ecd48" }, "require": { "drupal/core": "^9.3 || ^10" @@ -4405,8 +4420,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.8", - "datestamp": "1676965468", + "version": "8.x-2.10", + "datestamp": "1709584348", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4474,17 +4489,17 @@ }, { "name": "drupal/ds", - "version": "3.19.0", + "version": "3.21.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.19" + "reference": "8.x-3.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.19.zip", - "reference": "8.x-3.19", - "shasum": "7a1a4ded193ad8489c123a2f20ca2c7908c65eaa" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.21.zip", + "reference": "8.x-3.21", + "shasum": "2ba25caae67bda0c029505c40483ea28b5fe22e4" }, "require": { "drupal/core": "^10" @@ -4496,8 +4511,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.19", - "datestamp": "1707499881", + "version": "8.x-3.21", + "datestamp": "1714125839", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4544,26 +4559,29 @@ }, { "name": "drupal/editoria11y", - "version": "2.1.8", + "version": "2.1.12", "source": { "type": "git", "url": "https://git.drupalcode.org/project/editoria11y.git", - "reference": "2.1.8" + "reference": "2.1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editoria11y-2.1.8.zip", - "reference": "2.1.8", - "shasum": "6ec91608cb6cd0db75a9a9bd8681616080cb8e76" + "url": "https://ftp.drupal.org/files/projects/editoria11y-2.1.12.zip", + "reference": "2.1.12", + "shasum": "2a3e32c25eebdcdb3c64144b01d7dd4ce2945fec" }, "require": { "drupal/core": "^9 || ^10" }, + "conflict": { + "drupal/csp": "<1.24" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.8", - "datestamp": "1707937463", + "version": "2.1.12", + "datestamp": "1713880633", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4597,10 +4615,10 @@ } ], "description": "Editoria11y (\"editorial accessibility\") is a user-friendly accessibility checker.", - "homepage": "http://drupal.org/project/editoria11y", + "homepage": "https://drupal.org/project/editoria11y", "support": { "source": "https://git.drupalcode.org/project/editoria11y", - "issues": "http://drupal.org/project/issues/editoria11y" + "issues": "https://drupal.org/project/issues/editoria11y" } }, { @@ -5361,7 +5379,7 @@ }, { "name": "drupal/field_event_dispatcher", - "version": "4.0.0-rc1", + "version": "4.0.1", "require": { "drupal/core": "^9.3 || ^10", "drupal/hook_event_dispatcher": "*" @@ -5369,11 +5387,11 @@ "type": "metapackage", "extra": { "drupal": { - "version": "4.0.0-rc1", - "datestamp": "1691676068", + "version": "4.0.1", + "datestamp": "1710429583", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -5529,6 +5547,56 @@ "issues": "https://www.drupal.org/project/issues/field_group" } }, + { + "name": "drupal/field_label", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/field_label.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/field_label-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "e114bcc413674a3b36b0555652217814d7cb8906" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1707244848", + "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": "Michael Caldwell (justcaldwell)", + "homepage": "https://www.drupal.org/u/justcaldwell", + "role": "Maintainer" + } + ], + "description": "Allow authorized users to customize field label formatter settings", + "homepage": "https://drupal.org/project/field_label", + "keywords": [ + "Drupal", + "Field label" + ], + "support": { + "source": "https://git.drupalcode.org/project/field_label", + "issues": "https://www.drupal.org/project/issues/field_label" + } + }, { "name": "drupal/field_permissions", "version": "1.3.0", @@ -5693,16 +5761,16 @@ }, { "name": "drupal/file_mdm_exif", - "version": "2.6.0", + "version": "3.0.0", "require": { - "drupal/core": "^9.3 | ^10", + "drupal/core": "^10.1", "drupal/file_mdm": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1688489716", + "version": "3.0.0", + "datestamp": "1691421181", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5727,16 +5795,16 @@ }, { "name": "drupal/file_mdm_font", - "version": "2.6.0", + "version": "3.0.0", "require": { - "drupal/core": "^9.3 | ^10", + "drupal/core": "^10.1", "drupal/file_mdm": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1688489716", + "version": "3.0.0", + "datestamp": "1691421181", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5805,23 +5873,21 @@ }, { "name": "drupal/focal_point", - "version": "2.0.2", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "2.0.2" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-2.0.2.zip", - "reference": "2.0.2", - "shasum": "8e809795ec6a68a0bc3740b0b0a41bfa53d4d6d5" + "url": "https://ftp.drupal.org/files/projects/focal_point-2.0.3.zip", + "reference": "2.0.3", + "shasum": "5067b249e39c2f93799a4cadfcc3d3dc981f3ef5" }, "require": { "drupal/core": "^9.3 || ^10", - "drupal/crop": "^2.3", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_draggable": "^2.0" + "drupal/crop": "^2.3" }, "require-dev": { "drupal/crop": "*" @@ -5829,8 +5895,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1690451892", + "version": "2.0.3", + "datestamp": "1710483189", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6060,17 +6126,17 @@ }, { "name": "drupal/graphql", - "version": "4.6.0", + "version": "4.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/graphql.git", - "reference": "8.x-4.6" + "reference": "8.x-4.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.6.zip", - "reference": "8.x-4.6", - "shasum": "629eb1d405ea35460e6f94bd46a20316adf4fbe9" + "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.7.zip", + "reference": "8.x-4.7", + "shasum": "aec6286cf550e5625d39e451284d33dd80568419" }, "require": { "drupal/core": "^9.3 || ^10", @@ -6084,8 +6150,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-4.6", - "datestamp": "1699463388", + "version": "8.x-4.7", + "datestamp": "1711037105", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6186,10 +6252,6 @@ { "name": "jmolivas", "homepage": "https://www.drupal.org/user/678770" - }, - { - "name": "juanramonperez", - "homepage": "https://www.drupal.org/user/549414" } ], "description": "Toolkit for generating GraphQL schemas in Drupal.", @@ -6201,17 +6263,17 @@ }, { "name": "drupal/hook_event_dispatcher", - "version": "4.0.0-rc1", + "version": "4.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/hook_event_dispatcher.git", - "reference": "4.0.0-rc1" + "reference": "4.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hook_event_dispatcher-4.0.0-rc1.zip", - "reference": "4.0.0-rc1", - "shasum": "4e643c27f4c083eb30a1e2325163e65be47d7b81" + "url": "https://ftp.drupal.org/files/projects/hook_event_dispatcher-4.0.1.zip", + "reference": "4.0.1", + "shasum": "a170035796c1f72f820bca5642f5de0117d51524" }, "require": { "drupal/core": "^10", @@ -6220,6 +6282,7 @@ "require-dev": { "drupal/core_event_dispatcher": "*", "drupal/paragraphs": "^1.10", + "drupal/tracer": "^1.0", "drupal/webform": "*", "mglaman/phpstan-drupal": "^1.1", "mockery/mockery": "^1.3", @@ -6233,11 +6296,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.0-rc1", - "datestamp": "1691676068", + "version": "4.0.1", + "datestamp": "1710429583", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -7535,17 +7598,17 @@ }, { "name": "drupal/linkit", - "version": "6.1.2", + "version": "6.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "6.1.2" + "reference": "6.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip", - "reference": "6.1.2", - "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8" + "url": "https://ftp.drupal.org/files/projects/linkit-6.1.3.zip", + "reference": "6.1.3", + "shasum": "469a5e38269ed5e707998000ee4701ab4922e561" }, "require": { "drupal/core": "^10.1" @@ -7557,8 +7620,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.1.2", - "datestamp": "1696865478", + "version": "6.1.3", + "datestamp": "1710519126", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7962,6 +8025,10 @@ "name": "Ludo.R", "homepage": "https://www.drupal.org/user/374670" }, + { + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, { "name": "rutiolma", "homepage": "https://www.drupal.org/user/757938" @@ -8574,7 +8641,7 @@ "extra": { "drupal": { "version": "8.x-1.0-rc7", - "datestamp": "1698848506", + "datestamp": "1709793226", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -8726,54 +8793,6 @@ "issues": "https://www.drupal.org/project/issues/oembed_providers" } }, - { - "name": "drupal/page_cache_query_ignore", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/page_cache_query_ignore.git", - "reference": "2.2.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/page_cache_query_ignore-2.2.0.zip", - "reference": "2.2.0", - "shasum": "3d3c6534b4d35ad5bf1a74c475ecfc5fbc05ea0c" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.0", - "datestamp": "1666315197", - "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": "nterbogt", - "homepage": "https://www.drupal.org/user/102218" - }, - { - "name": "validoll", - "homepage": "https://www.drupal.org/user/144206" - } - ], - "description": "Alter page cache middleware class to ignore query params.", - "homepage": "https://www.drupal.org/project/page_cache_query_ignore", - "support": { - "source": "https://git.drupalcode.org/project/page_cache_query_ignore" - } - }, { "name": "drupal/page_manager", "version": "4.0.0-rc2", @@ -8886,7 +8905,7 @@ "extra": { "drupal": { "version": "8.x-1.17", - "datestamp": "1705234146", + "datestamp": "1709804220", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9131,7 +9150,7 @@ "extra": { "drupal": { "version": "8.x-1.12", - "datestamp": "1696776683", + "datestamp": "1712319355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9962,17 +9981,17 @@ }, { "name": "drupal/scheduler", - "version": "2.0.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "2.0.1" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-2.0.1.zip", - "reference": "2.0.1", - "shasum": "d0666b4278b3e54f5c85c28298a35f492e0b715a" + "url": "https://ftp.drupal.org/files/projects/scheduler-2.0.3.zip", + "reference": "2.0.3", + "shasum": "1ef7a92afcb8e138cf697dc35f15cbc2353801b4" }, "require": { "drupal/core": "^8 || ^9 || ^10" @@ -9981,13 +10000,15 @@ "drupal/commerce": "^2.0", "drupal/devel_generate": ">=4", "drupal/rules": "^3", + "drupal/workbench_moderation": "*", + "drupal/workbench_moderation_actions": "*", "drush/drush": ">=9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1689337325", + "version": "2.0.3", + "datestamp": "1714312557", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10034,20 +10055,20 @@ }, { "name": "drupal/search_api", - "version": "1.31.0", + "version": "1.34.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.31" + "reference": "8.x-1.34" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip", - "reference": "8.x-1.31", - "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.34.zip", + "reference": "8.x-1.34", + "shasum": "dd08166888f90adaf01cc1a759266097709efe7c" }, "require": { - "drupal/core": "^10.0" + "drupal/core": "^10.1 || ^11" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -10065,8 +10086,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.31", - "datestamp": "1700926323", + "version": "8.x-1.34", + "datestamp": "1712400445", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10167,20 +10188,20 @@ }, { "name": "drupal/shs", - "version": "2.0.0-rc4", + "version": "2.0.0-rc12", "source": { "type": "git", "url": "https://git.drupalcode.org/project/shs.git", - "reference": "2.0.0-rc4" + "reference": "2.0.0-rc12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shs-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "15d4d84f4c91dc9d4a304bfec8255a13b75b2195" + "url": "https://ftp.drupal.org/files/projects/shs-2.0.0-rc12.zip", + "reference": "2.0.0-rc12", + "shasum": "341ffbc1d9daa2fdc6f8d8c986c87973b1a3cc3b" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^9 || ^10" }, "require-dev": { "drupal/chosen": "*" @@ -10188,8 +10209,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1681242239", + "version": "2.0.0-rc12", + "datestamp": "1712249467", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -10205,6 +10226,10 @@ "name": "jhedstrom", "homepage": "https://www.drupal.org/user/208732" }, + { + "name": "joseph.olstad", + "homepage": "https://www.drupal.org/user/1321830" + }, { "name": "stBorchert", "homepage": "https://www.drupal.org/user/36942" @@ -10287,21 +10312,21 @@ }, { "name": "drupal/smart_date", - "version": "4.0.3", + "version": "4.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "4.0.3" + "reference": "4.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-4.0.3.zip", - "reference": "4.0.3", - "shasum": "9f8fd56690eae5b5ae7231ab17641fa1d57ec261" + "url": "https://ftp.drupal.org/files/projects/smart_date-4.1.1.zip", + "reference": "4.1.1", + "shasum": "83b7fa688e3828e84df4f4775d0609cc7101b417" }, "require": { - "drupal/core": "^9 || ^10", - "php": ">=8.0", + "drupal/core": "^9 || ^10 || ^11", + "php": ">=8.1", "simshaun/recurr": "^5" }, "suggest": { @@ -10310,8 +10335,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.3", - "datestamp": "1689755800", + "version": "4.1.1", + "datestamp": "1714297955", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10748,17 +10773,17 @@ }, { "name": "drupal/token", - "version": "1.13.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.13" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "df3cae709fcc1a99ac1111ce67a0d6af56d287d7" }, "require": { "drupal/core": "^9.2 || ^10" @@ -10766,8 +10791,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1697885927", + "version": "8.x-1.14", + "datestamp": "1713009399", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11123,26 +11148,30 @@ }, { "name": "drupal/view_unpublished", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/view_unpublished.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "f9f5e88cbaf1a1e71952d94cf67ef2f180e292be" + "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "14374dd56d841270207e21974c7b7cf8aa1804f7" }, "require": { "drupal/core": "^9.4 || ^10" }, + "require-dev": { + "drupal/coder": "^8.3.18", + "phpcompatibility/php-compatibility": "10.x-dev@dev" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1681757575", + "version": "8.x-1.2", + "datestamp": "1709383642", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11585,81 +11614,6 @@ "source": "https://git.drupalcode.org/project/views_infinite_scroll" } }, - { - "name": "drupal/views_rss", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/views_rss.git", - "reference": "8.x-2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_rss-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "29e18d58d3f5f19877b95a3d812ad263287feb0d" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "require-dev": { - "drupal/views_rss-views_rss_media": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.2", - "datestamp": "1695558546", - "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": "alex_b", - "homepage": "https://www.drupal.org/user/53995" - }, - { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" - }, - { - "name": "David Goode", - "homepage": "https://www.drupal.org/user/291318" - }, - { - "name": "idebr", - "homepage": "https://www.drupal.org/user/1879760" - }, - { - "name": "maciej.zgadzaj", - "homepage": "https://www.drupal.org/user/271491" - }, - { - "name": "Nate_S", - "homepage": "https://www.drupal.org/user/3531716" - }, - { - "name": "rsoden", - "homepage": "https://www.drupal.org/user/226437" - }, - { - "name": "Will White", - "homepage": "https://www.drupal.org/user/32237" - } - ], - "description": "Extends the possibilites to create RSS with Views", - "homepage": "https://www.drupal.org/project/views_rss", - "support": { - "source": "https://git.drupalcode.org/project/views_rss" - } - }, { "name": "drupal/views_taxonomy_term_name_depth", "version": "7.2.0", @@ -11719,27 +11673,27 @@ }, { "name": "drupal/webp", - "version": "1.0.0-rc1", + "version": "1.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webp.git", - "reference": "8.x-1.0-rc1" + "reference": "8.x-1.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webp-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "59466a0c5881f265926429ce6033084653ecd1ef" + "url": "https://ftp.drupal.org/files/projects/webp-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "16a1d2c29af57ac04603bcba275e732340491554" }, "require": { - "drupal/core": "^8 || ^9 || ^10", + "drupal/core": "^8 || ^9 || ^10 || ^11", "ext-gd": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1692124378", + "version": "8.x-1.0-rc2", + "datestamp": "1713170119", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -11877,57 +11831,55 @@ }, { "name": "drush/drush", - "version": "11.6.0", + "version": "12.5.1", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78" + "reference": "71fcea30a22e7336e17be18bb5945400b2c63fad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78", - "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/71fcea30a22e7336e17be18bb5945400b2c63fad", + "reference": "71fcea30a22e7336e17be18bb5945400b2c63fad", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^2.4", + "chi-teck/drupal-code-generator": "^3.0", + "composer-runtime-api": "^2.2", "composer/semver": "^1.4 || ^3", - "consolidation/annotated-command": "^4.8.2", - "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", + "consolidation/annotated-command": "^4.9.2", + "consolidation/config": "^2.1.2", + "consolidation/filter-via-dot-access-data": "^2.0.2", + "consolidation/output-formatters": "^4.3.2", + "consolidation/robo": "^4.0.6", + "consolidation/site-alias": "^4", + "consolidation/site-process": "^5.2.0", "ext-dom": "*", - "guzzlehttp/guzzle": "^6.5 || ^7.0", - "league/container": "^3.4 || ^4", - "php": ">=7.4", + "grasmash/yaml-cli": "^3.1", + "guzzlehttp/guzzle": "^7.0", + "league/container": "^4", + "php": ">=8.1", "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", + "symfony/event-dispatcher": "^6", + "symfony/filesystem": "^6.1", + "symfony/finder": "^6", + "symfony/var-dumper": "^6.0", + "symfony/yaml": "^6.0", "webflo/drupal-finder": "^1.2" }, "conflict": { - "drupal/core": "< 9.2", + "drupal/core": "< 10.0", "drupal/migrate_run": "*", "drupal/migrate_tools": "<= 5" }, "require-dev": { - "composer/installers": "^1.7", + "composer/installers": "^2", "cweagans/composer-patches": "~1.0", - "david-garcia/phpwhois": "4.3.0", - "drupal/core-recommended": "^9 || ^10", + "drupal/core-recommended": "^10", "drupal/semver_example": "2.3.0", - "phpunit/phpunit": ">=7.5.20", + "phpunit/phpunit": "^9", "rector/rector": "^0.12", - "squizlabs/php_codesniffer": "^3.6", - "vlucas/phpdotenv": "^2.4", - "yoast/phpunit-polyfills": "^0.2.0" + "squizlabs/php_codesniffer": "^3.7" }, "bin": [ "drush" @@ -12009,8 +11961,9 @@ "support": { "forum": "http://drupal.stackexchange.com/questions/tagged/drush", "issues": "https://github.com/drush-ops/drush/issues", + "security": "https://github.com/drush-ops/drush/security/advisories", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/11.6.0" + "source": "https://github.com/drush-ops/drush/tree/12.5.1" }, "funding": [ { @@ -12018,7 +11971,7 @@ "type": "github" } ], - "time": "2023-06-06T18:46:18+00:00" + "time": "2024-03-20T15:03:27+00:00" }, { "name": "e0ipso/shaper", @@ -12302,33 +12255,29 @@ }, { "name": "fileeye/mimemap", - "version": "2.0.3", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/FileEye/MimeMap.git", - "reference": "0795b7db12838ffb7bc564e0a02cf53fb1463ec0" + "reference": "4ea9ac8d7fc599fffe7108f8821a7b324b5d0af4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/0795b7db12838ffb7bc564e0a02cf53fb1463ec0", - "reference": "0795b7db12838ffb7bc564e0a02cf53fb1463ec0", + "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/4ea9ac8d7fc599fffe7108f8821a7b324b5d0af4", + "reference": "4ea9ac8d7fc599fffe7108f8821a7b324b5d0af4", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.4" }, "require-dev": { "composer-runtime-api": "^2.0.0", - "phpstan/phpstan": "^1.2", - "phpunit/phpunit": "^9 | ^10", "sebastian/comparator": ">=4", "sebastian/diff": ">=4", - "squizlabs/php_codesniffer": ">=3.6", "symfony/console": ">=5.4", "symfony/filesystem": ">=5.4", "symfony/var-dumper": ">=5.4", - "symfony/yaml": ">=5.4", - "vimeo/psalm": "^4.23 | ^5" + "symfony/yaml": ">=5.4" }, "bin": [ "bin/fileeye-mimemap" @@ -12358,9 +12307,9 @@ ], "support": { "issues": "https://github.com/FileEye/MimeMap/issues", - "source": "https://github.com/FileEye/MimeMap/tree/2.0.3" + "source": "https://github.com/FileEye/MimeMap/tree/2.1.0" }, - "time": "2023-11-11T14:14:23+00:00" + "time": "2024-04-06T13:00:52+00:00" }, { "name": "fileeye/pel", @@ -12592,24 +12541,24 @@ }, { "name": "grasmash/yaml-cli", - "version": "3.1.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/grasmash/yaml-cli.git", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0" + "reference": "09a8860566958a1576cc54bbe910a03477e54971" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0", + "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971", + "reference": "09a8860566958a1576cc54bbe910a03477e54971", "shasum": "" }, "require": { "dflydev/dot-access-data": "^3", "php": ">=8.0", - "symfony/console": "^6", - "symfony/filesystem": "^6", - "symfony/yaml": "^6" + "symfony/console": "^6 || ^7", + "symfony/filesystem": "^6 || ^7", + "symfony/yaml": "^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2", @@ -12642,9 +12591,9 @@ "description": "A command line tool for reading and manipulating yaml files.", "support": { "issues": "https://github.com/grasmash/yaml-cli/issues", - "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0" + "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1" }, - "time": "2022-05-09T20:22:34+00:00" + "time": "2024-04-23T02:10:57+00:00" }, { "name": "grasmash/yaml-expander", @@ -12693,22 +12642,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.7.1", + "version": "7.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454" + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454", - "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0", - "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -12717,11 +12666,11 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -12799,7 +12748,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.7.1" + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" }, "funding": [ { @@ -12815,7 +12764,7 @@ "type": "tidelift" } ], - "time": "2023-08-27T10:02:06+00:00" + "time": "2023-12-03T20:35:24+00:00" }, { "name": "guzzlehttp/promises", @@ -12902,16 +12851,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "2.5.1", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f" + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f", - "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", "shasum": "" }, "require": { @@ -12925,9 +12874,9 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -12998,7 +12947,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.5.1" + "source": "https://github.com/guzzle/psr7/tree/2.6.2" }, "funding": [ { @@ -13014,7 +12963,7 @@ "type": "tidelift" } ], - "time": "2023-08-03T15:02:42+00:00" + "time": "2023-12-03T20:05:35+00:00" }, { "name": "harvesthq/chosen", @@ -13313,16 +13262,16 @@ }, { "name": "league/container", - "version": "4.2.0", + "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab" + "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab", + "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88", + "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88", "shasum": "" }, "require": { @@ -13383,7 +13332,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.0" + "source": "https://github.com/thephpleague/container/tree/4.2.2" }, "funding": [ { @@ -13391,7 +13340,7 @@ "type": "github" } ], - "time": "2021-11-16T10:29:06+00:00" + "time": "2024-03-13T13:12:53+00:00" }, { "name": "league/csv", @@ -13696,16 +13645,16 @@ }, { "name": "league/uri", - "version": "7.4.0", + "version": "7.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5" + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4", + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4", "shasum": "" }, "require": { @@ -13774,7 +13723,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri/tree/7.4.0" + "source": "https://github.com/thephpleague/uri/tree/7.4.1" }, "funding": [ { @@ -13782,20 +13731,20 @@ "type": "github" } ], - "time": "2023-12-01T06:24:25+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "league/uri-interfaces", - "version": "7.4.0", + "version": "7.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3" + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", "shasum": "" }, "require": { @@ -13858,7 +13807,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.0" + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1" }, "funding": [ { @@ -13866,7 +13815,7 @@ "type": "github" } ], - "time": "2023-11-24T15:40:42+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "loophp/phposinfo", @@ -14225,16 +14174,16 @@ }, { "name": "mpdf/mpdf", - "version": "v8.2.2", + "version": "v8.2.3", "source": { "type": "git", "url": "https://github.com/mpdf/mpdf.git", - "reference": "596a87b876d7793be7be060a8ac13424de120dd5" + "reference": "6f723a96becf989a831e38caf758d28364a69939" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mpdf/mpdf/zipball/596a87b876d7793be7be060a8ac13424de120dd5", - "reference": "596a87b876d7793be7be060a8ac13424de120dd5", + "url": "https://api.github.com/repos/mpdf/mpdf/zipball/6f723a96becf989a831e38caf758d28364a69939", + "reference": "6f723a96becf989a831e38caf758d28364a69939", "shasum": "" }, "require": { @@ -14302,7 +14251,7 @@ "type": "custom" } ], - "time": "2023-11-07T13:52:14+00:00" + "time": "2024-03-11T12:55:53+00:00" }, { "name": "mpdf/psr-http-message-shim", @@ -14520,25 +14469,27 @@ }, { "name": "nikic/php-parser", - "version": "v4.18.0", + "version": "v5.0.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.4" }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -14546,7 +14497,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.9-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -14570,9 +14521,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2" }, - "time": "2023-12-10T21:03:43+00:00" + "time": "2024-03-05T20:51:40+00:00" }, { "name": "onelogin/php-saml", @@ -14997,16 +14948,16 @@ }, { "name": "phenx/php-svg-lib", - "version": "0.5.2", + "version": "0.5.4", "source": { "type": "git", "url": "https://github.com/dompdf/php-svg-lib.git", - "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa" + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa", - "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa", + "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691", + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691", "shasum": "" }, "require": { @@ -15025,7 +14976,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0" + "LGPL-3.0-or-later" ], "authors": [ { @@ -15037,9 +14988,9 @@ "homepage": "https://github.com/PhenX/php-svg-lib", "support": { "issues": "https://github.com/dompdf/php-svg-lib/issues", - "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2" + "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4" }, - "time": "2024-02-07T12:49:40+00:00" + "time": "2024-04-08T12:52:34+00:00" }, { "name": "phootwork/collection", @@ -15609,16 +15560,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.0", + "version": "v0.12.3", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" + "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", + "reference": "b6b6cce7d3ee8fbf31843edce5e8f5a72eff4a73", "shasum": "" }, "require": { @@ -15682,9 +15633,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.3" }, - "time": "2023-12-20T15:28:09+00:00" + "time": "2024-04-02T15:57:53+00:00" }, { "name": "ralouphie/getallheaders", @@ -16340,16 +16291,16 @@ }, { "name": "su-sws/drupal-patches", - "version": "10.1.8", + "version": "10.1.12", "source": { "type": "git", "url": "https://github.com/SU-SWS/drupal-patches.git", - "reference": "18ffcadf7bf3931c4ae96551306ec0a886a9d594" + "reference": "915404fa53f285c59d2f4752d54790336d741cc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SU-SWS/drupal-patches/zipball/18ffcadf7bf3931c4ae96551306ec0a886a9d594", - "reference": "18ffcadf7bf3931c4ae96551306ec0a886a9d594", + "url": "https://api.github.com/repos/SU-SWS/drupal-patches/zipball/915404fa53f285c59d2f4752d54790336d741cc9", + "reference": "915404fa53f285c59d2f4752d54790336d741cc9", "shasum": "" }, "require": { @@ -16422,9 +16373,6 @@ "https://www.drupal.org/project/menu_link_weight/issues/3410674": "https://www.drupal.org/files/issues/2023-12-23/menu_link_weight-3410674.patch", "https://www.drupal.org/project/menu_link_weight/issues/3099139": "https://www.drupal.org/files/issues/2019-12-05/menu_link_weight-target_blank-3099139.patch" }, - "drupal/page_cache_query_ignore": { - "https://www.drupal.org/project/page_cache_query_ignore/issues/3336993": "https://www.drupal.org/files/issues/2023-01-27/3336993-get_config.patch" - }, "drupal/paragraphs": { "https://www.drupal.org/project/paragraphs/issues/2901390": "https://www.drupal.org/files/issues/2020-06-25/paragraphs-2901390-51.patch" }, @@ -16449,7 +16397,7 @@ "https://www.drupal.org/project/views_taxonomy_term_name_depth/issues/2877249": "https://git.drupalcode.org/project/views_taxonomy_term_name_depth/-/merge_requests/2.diff" }, "drupal/webp": { - "https://www.drupal.org/project/webp/issues/3281606": "https://www.drupal.org/files/issues/2024-02-13/3281606-webp-17.patch" + "https://www.drupal.org/project/webp/issues/3281606": "https://git.drupalcode.org/project/webp/-/merge_requests/33.patch" } } }, @@ -16460,9 +16408,9 @@ "description": "Drupal core and contrib shared patches", "support": { "issues": "https://github.com/SU-SWS/drupal-patches/issues", - "source": "https://github.com/SU-SWS/drupal-patches/tree/10.1.8" + "source": "https://github.com/SU-SWS/drupal-patches/tree/10.1.12" }, - "time": "2024-02-13T16:40:45+00:00" + "time": "2024-04-23T19:55:37+00:00" }, { "name": "su-sws/earth_news_importer", @@ -16577,27 +16525,26 @@ }, { "name": "su-sws/stanford_media", - "version": "10.1.4", + "version": "11.0.3", "source": { "type": "git", "url": "https://github.com/SU-SWS/stanford_media.git", - "reference": "42ad5e78522cd96f3801c18352feec492a3a0792" + "reference": "251aaa88dbb6394ec482e27041902c68a9f98520" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SU-SWS/stanford_media/zipball/42ad5e78522cd96f3801c18352feec492a3a0792", - "reference": "42ad5e78522cd96f3801c18352feec492a3a0792", + "url": "https://api.github.com/repos/SU-SWS/stanford_media/zipball/251aaa88dbb6394ec482e27041902c68a9f98520", + "reference": "251aaa88dbb6394ec482e27041902c68a9f98520", "shasum": "" }, "require": { "davidbarratt/custom-installer": "^1.1", - "drupal/core": "^10.0", + "drupal/core": "^10.2", "drupal/dropzonejs": "^2.7", "drupal/entity_usage": "^2.0@beta", "drupal/focal_point": "^2.0@alpha", "drupal/inline_entity_form": "^3.0", "drupal/oembed_providers": "^2.1", - "drupal/transliterate_filenames": "^2.0", "enyo/dropzone": "^5.9", "php": ">=8.1" }, @@ -16631,22 +16578,22 @@ "homepage": "https://github.com/SU-SWS/stanford_media", "support": { "issues": "https://github.com/SU-SWS/stanford_media/issues", - "source": "https://github.com/SU-SWS/stanford_media/tree/10.1.4" + "source": "https://github.com/SU-SWS/stanford_media/tree/11.0.3" }, - "time": "2023-12-18T20:14:49+00:00" + "time": "2024-04-09T19:16:42+00:00" }, { "name": "su-sws/stanford_migrate", - "version": "8.5.7", + "version": "8.5.9", "source": { "type": "git", "url": "https://github.com/SU-SWS/stanford_migrate.git", - "reference": "1462baf9e8069eedd5465d4e386c79a1a39aa531" + "reference": "7acf1a719a97f73c5fc4bcf604ba2a50b17a453d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SU-SWS/stanford_migrate/zipball/1462baf9e8069eedd5465d4e386c79a1a39aa531", - "reference": "1462baf9e8069eedd5465d4e386c79a1a39aa531", + "url": "https://api.github.com/repos/SU-SWS/stanford_migrate/zipball/7acf1a719a97f73c5fc4bcf604ba2a50b17a453d", + "reference": "7acf1a719a97f73c5fc4bcf604ba2a50b17a453d", "shasum": "" }, "require": { @@ -16687,27 +16634,28 @@ "homepage": "https://github.com/SU-SWS/stanford_migrate", "support": { "issues": "https://github.com/SU-SWS/stanford_migrate/issues", - "source": "https://github.com/SU-SWS/stanford_migrate/tree/8.5.7" + "source": "https://github.com/SU-SWS/stanford_migrate/tree/8.5.9" }, - "time": "2024-02-22T15:52:16+00:00" + "time": "2024-04-05T17:51:19+00:00" }, { "name": "su-sws/stanford_profile_helper", - "version": "9.4.2", + "version": "9.6.7", "source": { "type": "git", "url": "https://github.com/SU-SWS/stanford_profile_helper.git", - "reference": "35d76455178d6efd06350e4c1e5ecd1f83f2d3e7" + "reference": "97eb9fbf929b9bbd503d55c3f1e4d65fedc59786" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SU-SWS/stanford_profile_helper/zipball/35d76455178d6efd06350e4c1e5ecd1f83f2d3e7", - "reference": "35d76455178d6efd06350e4c1e5ecd1f83f2d3e7", + "url": "https://api.github.com/repos/SU-SWS/stanford_profile_helper/zipball/97eb9fbf929b9bbd503d55c3f1e4d65fedc59786", + "reference": "97eb9fbf929b9bbd503d55c3f1e4d65fedc59786", "shasum": "" }, "require": { + "drupal/graphql_compose": "^2.0", "drupal/layout_paragraphs": "^2.0", - "seboettg/collection": "<4.0.0" + "seboettg/collection": "~3.1" }, "replace": { "drupal/response_code_condition": "1.1.0" @@ -16716,7 +16664,7 @@ "citation-style-language/locales": "^1.0", "citation-style-language/styles-distribution": "^1.0", "drupal/admin_toolbar": ">=3.4", - "drupal/allowed_formats": ">=2.0", + "drupal/allowed_formats": ">=3.0", "drupal/auto_entitylabel": ">=3.0", "drupal/components": ">=3.0", "drupal/config_pages": ">=2.15", @@ -16728,6 +16676,7 @@ "drupal/field_group": ">=3.4", "drupal/flat_taxonomy": ">=2.0", "drupal/hook_event_dispatcher": ">=4.0", + "drupal/jsonapi_extras": ">=3.24", "drupal/layout_builder_restrictions": ">=2.19", "drupal/layout_library": ">=1.0@beta", "drupal/mathjax": ">=4.0", @@ -16787,9 +16736,9 @@ ], "description": "Helper Module For Stanford Profile", "support": { - "source": "https://github.com/SU-SWS/stanford_profile_helper/tree/9.4.2" + "source": "https://github.com/SU-SWS/stanford_profile_helper/tree/9.6.7" }, - "time": "2023-12-12T16:13:17+00:00" + "time": "2024-04-10T17:29:22+00:00" }, { "name": "su-sws/stanford_samlauth", @@ -16824,16 +16773,16 @@ }, { "name": "su-sws/stanford_syndication", - "version": "1.0.0-beta2", + "version": "1.0.0-beta4", "source": { "type": "git", "url": "https://github.com/SU-SWS/stanford_syndication.git", - "reference": "f05a90a71c209eb5591ede63b1ae9e5569ec7e20" + "reference": "5cf462de67ae1d520ea7eb2106ebc24627f08055" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SU-SWS/stanford_syndication/zipball/f05a90a71c209eb5591ede63b1ae9e5569ec7e20", - "reference": "f05a90a71c209eb5591ede63b1ae9e5569ec7e20", + "url": "https://api.github.com/repos/SU-SWS/stanford_syndication/zipball/5cf462de67ae1d520ea7eb2106ebc24627f08055", + "reference": "5cf462de67ae1d520ea7eb2106ebc24627f08055", "shasum": "" }, "type": "drupal-custom-module", @@ -16849,22 +16798,22 @@ "description": "Drupal module for connection to Syndication CMS systems", "support": { "issues": "https://github.com/SU-SWS/stanford_syndication/issues", - "source": "https://github.com/SU-SWS/stanford_syndication/tree/1.0.0-beta2" + "source": "https://github.com/SU-SWS/stanford_syndication/tree/1.0.0-beta4" }, - "time": "2024-02-12T20:08:26+00:00" + "time": "2024-03-18T16:40:08+00:00" }, { "name": "symfony/cache", - "version": "v6.4.4", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "0ef36534694c572ff526d91c7181f3edede176e7" + "reference": "b9e9b93c9817ec6c789c7943f5e54b57a041c16a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/0ef36534694c572ff526d91c7181f3edede176e7", - "reference": "0ef36534694c572ff526d91c7181f3edede176e7", + "url": "https://api.github.com/repos/symfony/cache/zipball/b9e9b93c9817ec6c789c7943f5e54b57a041c16a", + "reference": "b9e9b93c9817ec6c789c7943f5e54b57a041c16a", "shasum": "" }, "require": { @@ -16931,7 +16880,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.4" + "source": "https://github.com/symfony/cache/tree/v6.4.7" }, "funding": [ { @@ -16947,7 +16896,7 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/cache-contracts", @@ -17027,16 +16976,16 @@ }, { "name": "symfony/config", - "version": "v6.4.4", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "6ea4affc27f2086c9d16b92ab5429ce1e3c38047" + "reference": "51da0e4494d81bd7b5b5bd80319c55d8e0d7f4ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/6ea4affc27f2086c9d16b92ab5429ce1e3c38047", - "reference": "6ea4affc27f2086c9d16b92ab5429ce1e3c38047", + "url": "https://api.github.com/repos/symfony/config/zipball/51da0e4494d81bd7b5b5bd80319c55d8e0d7f4ff", + "reference": "51da0e4494d81bd7b5b5bd80319c55d8e0d7f4ff", "shasum": "" }, "require": { @@ -17082,7 +17031,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v6.4.4" + "source": "https://github.com/symfony/config/tree/v6.4.7" }, "funding": [ { @@ -17098,20 +17047,20 @@ "type": "tidelift" } ], - "time": "2024-02-26T07:52:26+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/console", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "6f69929b2421cf733a5b791dde3c3a2cfa6340cd" + "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/6f69929b2421cf733a5b791dde3c3a2cfa6340cd", - "reference": "6f69929b2421cf733a5b791dde3c3a2cfa6340cd", + "url": "https://api.github.com/repos/symfony/console/zipball/a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", + "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", "shasum": "" }, "require": { @@ -17119,7 +17068,7 @@ "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0" + "symfony/string": "^5.4|^6.0|^7.0" }, "conflict": { "symfony/dependency-injection": "<5.4", @@ -17133,12 +17082,16 @@ }, "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" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -17172,7 +17125,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.3.12" + "source": "https://github.com/symfony/console/tree/v6.4.7" }, "funding": [ { @@ -17188,20 +17141,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T16:21:43+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/css-selector", - "version": "v6.4.3", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229" + "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c5d5c2103c3762aff27a27e1e2409e30a79083b", + "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b", "shasum": "" }, "require": { @@ -17237,7 +17190,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.3" + "source": "https://github.com/symfony/css-selector/tree/v6.4.7" }, "funding": [ { @@ -17253,20 +17206,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "3ca6c70bef0644be86d5acd962f11a6a6aa9382d" + "reference": "d8c5f9781b71c2a868ae9d0e5c9b283684740b6d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/3ca6c70bef0644be86d5acd962f11a6a6aa9382d", - "reference": "3ca6c70bef0644be86d5acd962f11a6a6aa9382d", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d8c5f9781b71c2a868ae9d0e5c9b283684740b6d", + "reference": "d8c5f9781b71c2a868ae9d0e5c9b283684740b6d", "shasum": "" }, "require": { @@ -17274,7 +17227,7 @@ "psr/container": "^1.1|^2.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.2.10" + "symfony/var-exporter": "^6.2.10|^7.0" }, "conflict": { "ext-psr": "<1.1|>=2", @@ -17288,9 +17241,9 @@ "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" + "symfony/config": "^6.1|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -17318,7 +17271,7 @@ "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.3.12" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.7" }, "funding": [ { @@ -17334,11 +17287,11 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:17:33+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.3.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", @@ -17385,7 +17338,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" }, "funding": [ { @@ -17405,16 +17358,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v6.4.4", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "f0e7ec3fa17000e2d0cb4557b4b47c88a6a63531" + "reference": "2088c5da700b1e7a8689fffc10dda6c1f643deea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/f0e7ec3fa17000e2d0cb4557b4b47c88a6a63531", - "reference": "f0e7ec3fa17000e2d0cb4557b4b47c88a6a63531", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2088c5da700b1e7a8689fffc10dda6c1f643deea", + "reference": "2088c5da700b1e7a8689fffc10dda6c1f643deea", "shasum": "" }, "require": { @@ -17452,7 +17405,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v6.4.4" + "source": "https://github.com/symfony/dom-crawler/tree/v6.4.7" }, "funding": [ { @@ -17468,34 +17421,35 @@ "type": "tidelift" } ], - "time": "2024-02-07T09:17:57+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/error-handler", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "93a8400a7eaaaf385b2d6f71e30e064baa639629" + "reference": "667a072466c6a53827ed7b119af93806b884cbb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/93a8400a7eaaaf385b2d6f71e30e064baa639629", - "reference": "93a8400a7eaaaf385b2d6f71e30e064baa639629", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/667a072466c6a53827ed7b119af93806b884cbb3", + "reference": "667a072466c6a53827ed7b119af93806b884cbb3", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^5.4|^6.0" + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "conflict": { - "symfony/deprecation-contracts": "<2.5" + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" }, "require-dev": { "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/serializer": "^5.4|^6.0" + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^5.4|^6.0|^7.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -17526,7 +17480,7 @@ "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.3.12" + "source": "https://github.com/symfony/error-handler/tree/v6.4.7" }, "funding": [ { @@ -17542,20 +17496,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6e344ddd3c18c525b5e5a4e996f3debda48e3078" + "reference": "d84384f3f67de3cb650db64d685d70395dacfc3f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6e344ddd3c18c525b5e5a4e996f3debda48e3078", - "reference": "6e344ddd3c18c525b5e5a4e996f3debda48e3078", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d84384f3f67de3cb650db64d685d70395dacfc3f", + "reference": "d84384f3f67de3cb650db64d685d70395dacfc3f", "shasum": "" }, "require": { @@ -17572,13 +17526,13 @@ }, "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/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0" + "symfony/stopwatch": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -17606,7 +17560,7 @@ "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.3.12" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.7" }, "funding": [ { @@ -17622,20 +17576,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.3.0", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "reference": "4e64b49bf370ade88e567de29465762e316e4224" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224", + "reference": "4e64b49bf370ade88e567de29465762e316e4224", "shasum": "" }, "require": { @@ -17682,7 +17636,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2" }, "funding": [ { @@ -17698,26 +17652,27 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/filesystem", - "version": "v6.4.6", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "9919b5509ada52cc7f66f9a35c86a4a29955c9d3" + "reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/9919b5509ada52cc7f66f9a35c86a4a29955c9d3", - "reference": "9919b5509ada52cc7f66f9a35c86a4a29955c9d3", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/78dde75f8f6dbbca4ec436a4b0087f7af02076d4", + "reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4", "shasum": "" }, "require": { "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" + "symfony/polyfill-mbstring": "~1.8", + "symfony/process": "^5.4|^6.4" }, "type": "library", "autoload": { @@ -17745,7 +17700,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.6" + "source": "https://github.com/symfony/filesystem/tree/v6.4.7" }, "funding": [ { @@ -17761,20 +17716,20 @@ "type": "tidelift" } ], - "time": "2024-03-21T19:36:20+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/finder", - "version": "v6.4.0", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "reference": "511c48990be17358c23bf45c5d71ab85d40fb764" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/511c48990be17358c23bf45c5d71ab85d40fb764", + "reference": "511c48990be17358c23bf45c5d71ab85d40fb764", "shasum": "" }, "require": { @@ -17809,7 +17764,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" + "source": "https://github.com/symfony/finder/tree/v6.4.7" }, "funding": [ { @@ -17825,20 +17780,20 @@ "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" + "time": "2024-04-23T10:36:43+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "3b72add708d48e8c08f7152df2d0b8d5303408fa" + "reference": "b4db6b833035477cb70e18d0ae33cb7c2b521759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3b72add708d48e8c08f7152df2d0b8d5303408fa", - "reference": "3b72add708d48e8c08f7152df2d0b8d5303408fa", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b4db6b833035477cb70e18d0ae33cb7c2b521759", + "reference": "b4db6b833035477cb70e18d0ae33cb7c2b521759", "shasum": "" }, "require": { @@ -17853,12 +17808,12 @@ "require-dev": { "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.3", - "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" + "symfony/cache": "^6.3|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -17886,7 +17841,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.3.12" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.7" }, "funding": [ { @@ -17902,29 +17857,29 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f7d160e46a6e0d3183e7a3846d4e3b4d04d5898b" + "reference": "b7b5e6cdef670a0c82d015a966ffc7e855861a98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f7d160e46a6e0d3183e7a3846d4e3b4d04d5898b", - "reference": "f7d160e46a6e0d3183e7a3846d4e3b4d04d5898b", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b7b5e6cdef670a0c82d015a966ffc7e855861a98", + "reference": "b7b5e6cdef670a0c82d015a966ffc7e855861a98", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/error-handler": "^6.3", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/http-foundation": "^6.3.4", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -17932,7 +17887,7 @@ "symfony/cache": "<5.4", "symfony/config": "<6.1", "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.3.4", + "symfony/dependency-injection": "<6.4", "symfony/doctrine-bridge": "<5.4", "symfony/form": "<5.4", "symfony/http-client": "<5.4", @@ -17942,7 +17897,7 @@ "symfony/translation": "<5.4", "symfony/translation-contracts": "<2.5", "symfony/twig-bridge": "<5.4", - "symfony/validator": "<5.4", + "symfony/validator": "<6.4", "symfony/var-dumper": "<6.3", "twig/twig": "<2.13" }, @@ -17951,26 +17906,27 @@ }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^5.4|^6.0", - "symfony/clock": "^6.2", - "symfony/config": "^6.1", - "symfony/console": "^5.4|^6.0", - "symfony/css-selector": "^5.4|^6.0", - "symfony/dependency-injection": "^6.3.4", - "symfony/dom-crawler": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/finder": "^5.4|^6.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", "symfony/http-client-contracts": "^2.5|^3", - "symfony/process": "^5.4|^6.0", - "symfony/property-access": "^5.4.5|^6.0.5", - "symfony/routing": "^5.4|^6.0", - "symfony/serializer": "^6.3", - "symfony/stopwatch": "^5.4|^6.0", - "symfony/translation": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", "symfony/translation-contracts": "^2.5|^3", - "symfony/uid": "^5.4|^6.0", - "symfony/validator": "^6.3", - "symfony/var-exporter": "^6.2", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", "twig/twig": "^2.13|^3.0.4" }, "type": "library", @@ -17999,7 +17955,87 @@ "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.3.12" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.7" + }, + "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": "2024-04-29T11:24:44+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.4.7", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "2c446d4e446995bed983c0b5bb9ff837e8de7dbd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/2c446d4e446995bed983c0b5bb9ff837e8de7dbd", + "reference": "2c446d4e446995bed983c0b5bb9ff837e8de7dbd", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "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": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v6.4.7" }, "funding": [ { @@ -18015,20 +18051,20 @@ "type": "tidelift" } ], - "time": "2024-01-30T20:05:26+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/mime", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "4b24dcaf8dfcd23fb7abb5b9df11e8c8093db68a" + "reference": "decadcf3865918ecfcbfa90968553994ce935a5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/4b24dcaf8dfcd23fb7abb5b9df11e8c8093db68a", - "reference": "4b24dcaf8dfcd23fb7abb5b9df11e8c8093db68a", + "url": "https://api.github.com/repos/symfony/mime/zipball/decadcf3865918ecfcbfa90968553994ce935a5e", + "reference": "decadcf3865918ecfcbfa90968553994ce935a5e", "shasum": "" }, "require": { @@ -18042,16 +18078,17 @@ "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<5.4", - "symfony/serializer": "<6.3.12|>=6.4,<6.4.3" + "symfony/serializer": "<6.3.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.3.12|^6.4.3" + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3.2|^7.0" }, "type": "library", "autoload": { @@ -18083,7 +18120,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.3.12" + "source": "https://github.com/symfony/mime/tree/v6.4.7" }, "funding": [ { @@ -18099,20 +18136,20 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:17:33+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { @@ -18127,7 +18164,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18165,7 +18202,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -18181,20 +18218,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "927013f3aac555983a5059aada98e1907d842695" + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", - "reference": "927013f3aac555983a5059aada98e1907d842695", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", "shasum": "" }, "require": { @@ -18209,7 +18246,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18248,7 +18285,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" }, "funding": [ { @@ -18264,20 +18301,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "511a08c03c1960e08a883f4cffcacd219b758354" + "reference": "875e90aeea2777b6f135677f618529449334a612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", - "reference": "511a08c03c1960e08a883f4cffcacd219b758354", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", "shasum": "" }, "require": { @@ -18289,7 +18326,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18329,7 +18366,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" }, "funding": [ { @@ -18345,20 +18382,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { @@ -18372,7 +18409,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18416,7 +18453,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -18432,20 +18469,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { @@ -18457,7 +18494,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18500,7 +18537,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -18516,20 +18553,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { @@ -18544,7 +18581,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18583,7 +18620,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -18599,7 +18636,7 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { "name": "symfony/polyfill-php72", @@ -18832,16 +18869,16 @@ }, { "name": "symfony/polyfill-php83", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "508c652ba3ccf69f8c97f251534f229791b52a57" + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57", - "reference": "508c652ba3ccf69f8c97f251534f229791b52a57", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", "shasum": "" }, "require": { @@ -18851,7 +18888,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -18864,7 +18901,10 @@ ], "psr-4": { "Symfony\\Polyfill\\Php83\\": "" - } + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -18889,7 +18929,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" }, "funding": [ { @@ -18905,20 +18945,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-08-16T06:22:46+00:00" }, { "name": "symfony/process", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "6c5eceb88510fc6ccd7044f2bacb21a3c0993882" + "reference": "cdb1c81c145fd5aa9b0038bab694035020943381" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/6c5eceb88510fc6ccd7044f2bacb21a3c0993882", - "reference": "6c5eceb88510fc6ccd7044f2bacb21a3c0993882", + "url": "https://api.github.com/repos/symfony/process/zipball/cdb1c81c145fd5aa9b0038bab694035020943381", + "reference": "cdb1c81c145fd5aa9b0038bab694035020943381", "shasum": "" }, "require": { @@ -18950,7 +18990,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.3.12" + "source": "https://github.com/symfony/process/tree/v6.4.7" }, "funding": [ { @@ -18966,46 +19006,42 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v2.2.0", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "28a732c05bbad801304ad5a5c674cf2970508993" + "reference": "e8adf6b1b46d9115f5d9247fa74bbefc459680c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993", - "reference": "28a732c05bbad801304ad5a5c674cf2970508993", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/e8adf6b1b46d9115f5d9247fa74bbefc459680c0", + "reference": "e8adf6b1b46d9115f5d9247fa74bbefc459680c0", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/http-message": "^1.0 || ^2.0", - "symfony/http-foundation": "^5.4 || ^6.0" + "php": ">=8.1", + "psr/http-message": "^1.0|^2.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0" + }, + "conflict": { + "php-http/discovery": "<1.15", + "symfony/http-kernel": "<6.2" }, "require-dev": { "nyholm/psr7": "^1.1", - "psr/log": "^1.1 || ^2 || ^3", - "symfony/browser-kit": "^5.4 || ^6.0", - "symfony/config": "^5.4 || ^6.0", - "symfony/event-dispatcher": "^5.4 || ^6.0", - "symfony/framework-bundle": "^5.4 || ^6.0", - "symfony/http-kernel": "^5.4 || ^6.0", - "symfony/phpunit-bridge": "^6.2" - }, - "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "php-http/discovery": "^1.15", + "psr/log": "^1.1.4|^2|^3", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/framework-bundle": "^6.2|^7.0", + "symfony/http-kernel": "^6.2|^7.0" }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-main": "2.2-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" @@ -19025,11 +19061,11 @@ }, { "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "homepage": "https://symfony.com/contributors" } ], "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "homepage": "https://symfony.com", "keywords": [ "http", "http-message", @@ -19037,8 +19073,7 @@ "psr-7" ], "support": { - "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.7" }, "funding": [ { @@ -19054,20 +19089,20 @@ "type": "tidelift" } ], - "time": "2023-04-21T08:40:19+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/routing", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "c7a3dcdd44d14022bf0d9d27f14a7b238f7e3e85" + "reference": "276e06398f71fa2a973264d94f28150f93cfb907" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/c7a3dcdd44d14022bf0d9d27f14a7b238f7e3e85", - "reference": "c7a3dcdd44d14022bf0d9d27f14a7b238f7e3e85", + "url": "https://api.github.com/repos/symfony/routing/zipball/276e06398f71fa2a973264d94f28150f93cfb907", + "reference": "276e06398f71fa2a973264d94f28150f93cfb907", "shasum": "" }, "require": { @@ -19083,11 +19118,11 @@ "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" + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -19121,7 +19156,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.3.12" + "source": "https://github.com/symfony/routing/tree/v6.4.7" }, "funding": [ { @@ -19137,20 +19172,20 @@ "type": "tidelift" } ], - "time": "2024-01-30T13:17:59+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/serializer", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "917d5ecbd6a7aece5b6a33c7aab82ee087d69803" + "reference": "73820ab43d12c2f29445080004054b0066082bf1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/917d5ecbd6a7aece5b6a33c7aab82ee087d69803", - "reference": "917d5ecbd6a7aece5b6a33c7aab82ee087d69803", + "url": "https://api.github.com/repos/symfony/serializer/zipball/73820ab43d12c2f29445080004054b0066082bf1", + "reference": "73820ab43d12c2f29445080004054b0066082bf1", "shasum": "" }, "require": { @@ -19166,28 +19201,32 @@ "symfony/property-access": "<5.4", "symfony/property-info": "<5.4.24|>=6,<6.2.11", "symfony/uid": "<5.4", + "symfony/validator": "<6.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/console": "^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.26|^6.3", - "symfony/property-info": "^5.4.24|^6.2.11", - "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" + "seld/jsonlint": "^1.10", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/filesystem": "^5.4|^6.0|^7.0", + "symfony/form": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.26|^6.3|^7.0", + "symfony/property-info": "^5.4.24|^6.2.11|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0", + "symfony/var-exporter": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -19215,7 +19254,7 @@ "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.3.12" + "source": "https://github.com/symfony/serializer/tree/v6.4.7" }, "funding": [ { @@ -19231,25 +19270,25 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:17:33+00:00" + "time": "2024-04-23T09:00:49+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.3.0", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4" + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", - "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e", + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^2.0" + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -19297,7 +19336,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.3.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.2" }, "funding": [ { @@ -19313,20 +19352,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2023-12-19T21:51:00+00:00" }, { "name": "symfony/string", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "bce75043af265dc8aca536a6ab1d6b3181763529" + "reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/bce75043af265dc8aca536a6ab1d6b3181763529", - "reference": "bce75043af265dc8aca536a6ab1d6b3181763529", + "url": "https://api.github.com/repos/symfony/string/zipball/ffeb9591c61f65a68d47f77d12b83fa530227a69", + "reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69", "shasum": "" }, "require": { @@ -19340,11 +19379,11 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/intl": "^6.2", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0" + "symfony/var-exporter": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -19383,7 +19422,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.3.12" + "source": "https://github.com/symfony/string/tree/v6.4.7" }, "funding": [ { @@ -19399,20 +19438,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.3.0", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86" + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86", - "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", "shasum": "" }, "require": { @@ -19461,7 +19500,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2" }, "funding": [ { @@ -19477,24 +19516,25 @@ "type": "tidelift" } ], - "time": "2023-05-30T17:17:10+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/twig-bridge", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", - "reference": "dd34e348a9237d40eb7a791ee14de6efbadd5108" + "reference": "544e47a4f2d4a786abd65531d2c326fb6e53da72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/dd34e348a9237d40eb7a791ee14de6efbadd5108", - "reference": "dd34e348a9237d40eb7a791ee14de6efbadd5108", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/544e47a4f2d4a786abd65531d2c326fb6e53da72", + "reference": "544e47a4f2d4a786abd65531d2c326fb6e53da72", "shasum": "" }, "require": { "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/translation-contracts": "^2.5|^3", "twig/twig": "^2.13|^3.0.4" }, @@ -19504,41 +19544,41 @@ "symfony/console": "<5.4", "symfony/form": "<6.3", "symfony/http-foundation": "<5.4", - "symfony/http-kernel": "<6.2", + "symfony/http-kernel": "<6.4", "symfony/mime": "<6.2", + "symfony/serializer": "<6.4", "symfony/translation": "<5.4", "symfony/workflow": "<5.4" }, "require-dev": { - "doctrine/annotations": "^1.12|^2", "egulias/email-validator": "^2.1.10|^3|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/asset": "^5.4|^6.0", - "symfony/asset-mapper": "^6.3", - "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/form": "^6.3", - "symfony/html-sanitizer": "^6.1", - "symfony/http-foundation": "^5.4|^6.0", - "symfony/http-kernel": "^6.2", - "symfony/intl": "^5.4|^6.0", - "symfony/mime": "^6.2", + "symfony/asset": "^5.4|^6.0|^7.0", + "symfony/asset-mapper": "^6.3|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/form": "^6.4|^7.0", + "symfony/html-sanitizer": "^6.1|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", "symfony/polyfill-intl-icu": "~1.0", - "symfony/property-info": "^5.4|^6.0", - "symfony/routing": "^5.4|^6.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", "symfony/security-acl": "^2.8|^3.0", - "symfony/security-core": "^5.4|^6.0", - "symfony/security-csrf": "^5.4|^6.0", - "symfony/security-http": "^5.4|^6.0", - "symfony/serializer": "~6.3.12|^6.4.3", - "symfony/stopwatch": "^5.4|^6.0", - "symfony/translation": "^6.1", - "symfony/web-link": "^5.4|^6.0", - "symfony/workflow": "^5.4|^6.0", - "symfony/yaml": "^5.4|^6.0", + "symfony/security-core": "^5.4|^6.0|^7.0", + "symfony/security-csrf": "^5.4|^6.0|^7.0", + "symfony/security-http": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^6.1|^7.0", + "symfony/web-link": "^5.4|^6.0|^7.0", + "symfony/workflow": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0", "twig/cssinliner-extra": "^2.12|^3", "twig/inky-extra": "^2.12|^3", "twig/markdown-extra": "^2.12|^3" @@ -19569,7 +19609,7 @@ "description": "Provides integration for Twig with various Symfony components", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/twig-bridge/tree/v6.3.12" + "source": "https://github.com/symfony/twig-bridge/tree/v6.4.7" }, "funding": [ { @@ -19585,20 +19625,20 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:17:33+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/validator", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "5e3ac975cc36d22db979225c587eed3d1f172bb8" + "reference": "4761a08d161d823ec281151ade0905547e0502a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/5e3ac975cc36d22db979225c587eed3d1f172bb8", - "reference": "5e3ac975cc36d22db979225c587eed3d1f172bb8", + "url": "https://api.github.com/repos/symfony/validator/zipball/4761a08d161d823ec281151ade0905547e0502a7", + "reference": "4761a08d161d823ec281151ade0905547e0502a7", "shasum": "" }, "require": { @@ -19617,27 +19657,27 @@ "symfony/http-kernel": "<5.4", "symfony/intl": "<5.4", "symfony/property-info": "<5.4", - "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3", + "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3", "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.35|~6.3.12|^6.4.3", - "symfony/yaml": "^5.4|^6.0" + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3", + "symfony/yaml": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -19665,7 +19705,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.3.12" + "source": "https://github.com/symfony/validator/tree/v6.4.7" }, "funding": [ { @@ -19681,20 +19721,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T14:46:07+00:00" + "time": "2024-04-28T10:38:38+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "5791cc448c78a1a7879812d8073cc6690286e488" + "reference": "7a9cd977cd1c5fed3694bee52990866432af07d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5791cc448c78a1a7879812d8073cc6690286e488", - "reference": "5791cc448c78a1a7879812d8073cc6690286e488", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7a9cd977cd1c5fed3694bee52990866432af07d7", + "reference": "7a9cd977cd1c5fed3694bee52990866432af07d7", "shasum": "" }, "require": { @@ -19707,10 +19747,11 @@ }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/uid": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", "twig/twig": "^2.13|^3.0.4" }, "bin": [ @@ -19749,7 +19790,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.3.12" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.7" }, "funding": [ { @@ -19765,27 +19806,30 @@ "type": "tidelift" } ], - "time": "2024-01-23T16:21:43+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "ea6fe0e7d188f4b34c28a00d3f9a58ee33801a4b" + "reference": "825f9b00c37bbe1c1691cc1aff9b5451fc9b4405" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/ea6fe0e7d188f4b34c28a00d3f9a58ee33801a4b", - "reference": "ea6fe0e7d188f4b34c28a00d3f9a58ee33801a4b", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/825f9b00c37bbe1c1691cc1aff9b5451fc9b4405", + "reference": "825f9b00c37bbe1c1691cc1aff9b5451fc9b4405", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0" + "symfony/property-access": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -19823,7 +19867,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.3.12" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.7" }, "funding": [ { @@ -19839,20 +19883,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/yaml", - "version": "v6.3.12", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "8ab9bb61e9b862c9b481af745ff163bc5e5e6246" + "reference": "53e8b1ef30a65f78eac60fddc5ee7ebbbdb1dee0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/8ab9bb61e9b862c9b481af745ff163bc5e5e6246", - "reference": "8ab9bb61e9b862c9b481af745ff163bc5e5e6246", + "url": "https://api.github.com/repos/symfony/yaml/zipball/53e8b1ef30a65f78eac60fddc5ee7ebbbdb1dee0", + "reference": "53e8b1ef30a65f78eac60fddc5ee7ebbbdb1dee0", "shasum": "" }, "require": { @@ -19864,7 +19908,7 @@ "symfony/console": "<5.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0|^7.0" }, "bin": [ "Resources/bin/yaml-lint" @@ -19895,7 +19939,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.3.12" + "source": "https://github.com/symfony/yaml/tree/v6.4.7" }, "funding": [ { @@ -19911,24 +19955,24 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:35:58+00:00" + "time": "2024-04-28T10:28:08+00:00" }, { "name": "tecnickcom/tcpdf", - "version": "6.6.5", + "version": "6.7.5", "source": { "type": "git", "url": "https://github.com/tecnickcom/TCPDF.git", - "reference": "5fce932fcee4371865314ab7f6c0d85423c5c7ce" + "reference": "951eabf0338ec2522bd0d5d9c79b08a3a3d36b36" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/5fce932fcee4371865314ab7f6c0d85423c5c7ce", - "reference": "5fce932fcee4371865314ab7f6c0d85423c5c7ce", + "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/951eabf0338ec2522bd0d5d9c79b08a3a3d36b36", + "reference": "951eabf0338ec2522bd0d5d9c79b08a3a3d36b36", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=5.5.0" }, "type": "library", "autoload": { @@ -19975,7 +20019,7 @@ ], "support": { "issues": "https://github.com/tecnickcom/TCPDF/issues", - "source": "https://github.com/tecnickcom/TCPDF/tree/6.6.5" + "source": "https://github.com/tecnickcom/TCPDF/tree/6.7.5" }, "funding": [ { @@ -19983,30 +20027,31 @@ "type": "custom" } ], - "time": "2023-09-06T15:09:26+00:00" + "time": "2024-04-20T17:25:10+00:00" }, { "name": "twig/twig", - "version": "v3.6.1", + "version": "v3.8.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd" + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd", - "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.22" }, "require-dev": { "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0" + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" }, "type": "library", "autoload": { @@ -20042,7 +20087,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.6.1" + "source": "https://github.com/twigphp/Twig/tree/v3.8.0" }, "funding": [ { @@ -20054,20 +20099,20 @@ "type": "tidelift" } ], - "time": "2023-06-08T12:52:13+00:00" + "time": "2023-11-21T18:54:41+00:00" }, { "name": "typhonius/acquia-php-sdk-v2", - "version": "3.2.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/typhonius/acquia-php-sdk-v2.git", - "reference": "d02f3dd134b35e108e17121cc4bee1361b89e292" + "reference": "8ddea7577d81eaefe7d31bd25c1f39def3d0b600" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/typhonius/acquia-php-sdk-v2/zipball/d02f3dd134b35e108e17121cc4bee1361b89e292", - "reference": "d02f3dd134b35e108e17121cc4bee1361b89e292", + "url": "https://api.github.com/repos/typhonius/acquia-php-sdk-v2/zipball/8ddea7577d81eaefe7d31bd25c1f39def3d0b600", + "reference": "8ddea7577d81eaefe7d31bd25c1f39def3d0b600", "shasum": "" }, "require": { @@ -20111,7 +20156,7 @@ "description": "A PHP SDK for Acquia CloudAPI v2", "support": { "issues": "https://github.com/typhonius/acquia-php-sdk-v2/issues", - "source": "https://github.com/typhonius/acquia-php-sdk-v2/tree/3.2.0" + "source": "https://github.com/typhonius/acquia-php-sdk-v2/tree/3.3.0" }, "funding": [ { @@ -20119,7 +20164,7 @@ "type": "github" } ], - "time": "2023-10-31T15:35:26+00:00" + "time": "2024-04-16T23:57:25+00:00" }, { "name": "wa72/htmlpagedom", @@ -20232,132 +20277,23 @@ "time": "2020-10-27T09:42:17+00:00" }, { - "name": "webmozart/assert", - "version": "1.11.0", + "name": "webonyx/graphql-php", + "version": "v14.11.10", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/webonyx/graphql-php.git", + "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9c2fdebc6aa01d831bc2969da00e8588cffef19", + "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" - }, - "time": "2022-06-03T18:03:27+00:00" - }, - { - "name": "webmozart/path-util", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.3-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\PathUtil\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", - "support": { - "issues": "https://github.com/webmozart/path-util/issues", - "source": "https://github.com/webmozart/path-util/tree/2.3.0" - }, - "abandoned": "symfony/filesystem", - "time": "2015-12-17T08:42:14+00:00" - }, - { - "name": "webonyx/graphql-php", - "version": "v14.11.10", - "source": { - "type": "git", - "url": "https://github.com/webonyx/graphql-php.git", - "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9c2fdebc6aa01d831bc2969da00e8588cffef19", - "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-mbstring": "*", - "php": "^7.1 || ^8" + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.1 || ^8" }, "require-dev": { "amphp/amp": "^2.3", @@ -20718,16 +20654,16 @@ }, { "name": "codeception/codeception", - "version": "5.1.1", + "version": "5.1.2", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "fcfa1d0ec2eb7439e5290fd3ea685b5d1f90075a" + "reference": "3b2d7d1a88e7e1d9dc0acb6d3c8f0acda0a37374" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/fcfa1d0ec2eb7439e5290fd3ea685b5d1f90075a", - "reference": "fcfa1d0ec2eb7439e5290fd3ea685b5d1f90075a", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/3b2d7d1a88e7e1d9dc0acb6d3c8f0acda0a37374", + "reference": "3b2d7d1a88e7e1d9dc0acb6d3c8f0acda0a37374", "shasum": "" }, "require": { @@ -20822,7 +20758,7 @@ ], "support": { "issues": "https://github.com/Codeception/Codeception/issues", - "source": "https://github.com/Codeception/Codeception/tree/5.1.1" + "source": "https://github.com/Codeception/Codeception/tree/5.1.2" }, "funding": [ { @@ -20830,7 +20766,7 @@ "type": "open_collective" } ], - "time": "2024-02-23T21:42:47+00:00" + "time": "2024-03-07T07:19:42+00:00" }, { "name": "codeception/lib-asserts", @@ -21303,28 +21239,28 @@ }, { "name": "composer/ca-bundle", - "version": "1.4.1", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "3ce240142f6d59b808dd65c1f52f7a1c252e6cfd" + "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3ce240142f6d59b808dd65c1f52f7a1c252e6cfd", - "reference": "3ce240142f6d59b808dd65c1f52f7a1c252e6cfd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", + "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", "shasum": "" }, "require": { "ext-openssl": "*", "ext-pcre": "*", - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.55", + "phpstan/phpstan": "^1.10", "psr/log": "^1.0", "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { @@ -21359,7 +21295,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.4.1" + "source": "https://github.com/composer/ca-bundle/tree/1.5.0" }, "funding": [ { @@ -21375,20 +21311,20 @@ "type": "tidelift" } ], - "time": "2024-02-23T10:16:52+00:00" + "time": "2024-03-15T14:00:32+00:00" }, { "name": "composer/class-map-generator", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/composer/class-map-generator.git", - "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9" + "reference": "8286a62d243312ed99b3eee20d5005c961adb311" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9", - "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8286a62d243312ed99b3eee20d5005c961adb311", + "reference": "8286a62d243312ed99b3eee20d5005c961adb311", "shasum": "" }, "require": { @@ -21432,7 +21368,7 @@ ], "support": { "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.1.0" + "source": "https://github.com/composer/class-map-generator/tree/1.1.1" }, "funding": [ { @@ -21448,20 +21384,20 @@ "type": "tidelift" } ], - "time": "2023-06-30T13:58:57+00:00" + "time": "2024-03-15T12:53:41+00:00" }, { "name": "composer/composer", - "version": "2.7.1", + "version": "2.7.4", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "aaf6ed5ccd27c23f79a545e351b4d7842a99d0bc" + "reference": "a625e50598e12171d3f60b1149eb530690c43474" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/aaf6ed5ccd27c23f79a545e351b4d7842a99d0bc", - "reference": "aaf6ed5ccd27c23f79a545e351b4d7842a99d0bc", + "url": "https://api.github.com/repos/composer/composer/zipball/a625e50598e12171d3f60b1149eb530690c43474", + "reference": "a625e50598e12171d3f60b1149eb530690c43474", "shasum": "" }, "require": { @@ -21546,7 +21482,7 @@ "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.7.1" + "source": "https://github.com/composer/composer/tree/2.7.4" }, "funding": [ { @@ -21562,7 +21498,7 @@ "type": "tidelift" } ], - "time": "2024-02-09T14:26:28+00:00" + "time": "2024-04-22T19:17:03+00:00" }, { "name": "composer/metadata-minifier", @@ -21635,16 +21571,16 @@ }, { "name": "composer/pcre", - "version": "3.1.2", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace" + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/4775f35b2d70865807c89d32c8e7385b86eb0ace", - "reference": "4775f35b2d70865807c89d32c8e7385b86eb0ace", + "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", "shasum": "" }, "require": { @@ -21686,7 +21622,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.1.2" + "source": "https://github.com/composer/pcre/tree/3.1.3" }, "funding": [ { @@ -21702,7 +21638,7 @@ "type": "tidelift" } ], - "time": "2024-03-07T15:38:35+00:00" + "time": "2024-03-19T10:26:25+00:00" }, { "name": "composer/spdx-licenses", @@ -21786,16 +21722,16 @@ }, { "name": "composer/xdebug-handler", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "ced299686f41dce890debac69273b47ffe98a40c" + "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", - "reference": "ced299686f41dce890debac69273b47ffe98a40c", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255", "shasum": "" }, "require": { @@ -21806,7 +21742,7 @@ "require-dev": { "phpstan/phpstan": "^1.0", "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^6.0" + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" }, "type": "library", "autoload": { @@ -21830,9 +21766,9 @@ "performance" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" + "source": "https://github.com/composer/xdebug-handler/tree/3.0.4" }, "funding": [ { @@ -21848,7 +21784,7 @@ "type": "tidelift" } ], - "time": "2022-02-25T21:32:43+00:00" + "time": "2024-03-26T18:29:49+00:00" }, { "name": "dekor/php-array-table", @@ -21901,16 +21837,16 @@ }, { "name": "doctrine/common", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", + "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", "shasum": "" }, "require": { @@ -21972,7 +21908,7 @@ ], "support": { "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/3.4.3" + "source": "https://github.com/doctrine/common/tree/3.4.4" }, "funding": [ { @@ -21988,7 +21924,7 @@ "type": "tidelift" } ], - "time": "2022-10-09T11:47:59+00:00" + "time": "2024-04-16T13:35:33+00:00" }, { "name": "doctrine/event-manager", @@ -22153,16 +22089,16 @@ }, { "name": "doctrine/persistence", - "version": "3.2.0", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "63fee8c33bef740db6730eb2a750cd3da6495603" + "reference": "477da35bd0255e032826f440b94b3e37f2d56f42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603", - "reference": "63fee8c33bef740db6730eb2a750cd3da6495603", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42", + "reference": "477da35bd0255e032826f440b94b3e37f2d56f42", "shasum": "" }, "require": { @@ -22231,7 +22167,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.2.0" + "source": "https://github.com/doctrine/persistence/tree/3.3.2" }, "funding": [ { @@ -22247,7 +22183,7 @@ "type": "tidelift" } ], - "time": "2023-05-17T18:32:04+00:00" + "time": "2024-03-12T14:54:36+00:00" }, { "name": "drupal/color", @@ -22373,16 +22309,16 @@ }, { "name": "drupal/core-dev", - "version": "10.1.8", + "version": "10.2.5", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "5d02df4f05f5033e7d8bf4098efa55cc0847e2b9" + "reference": "71d714deff8c277b8ef2f331f3bddbba03274dc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/5d02df4f05f5033e7d8bf4098efa55cc0847e2b9", - "reference": "5d02df4f05f5033e7d8bf4098efa55cc0847e2b9", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/71d714deff8c277b8ef2f331f3bddbba03274dc1", + "reference": "71d714deff8c277b8ef2f331f3bddbba03274dc1", "shasum": "" }, "require": { @@ -22390,26 +22326,28 @@ "behat/mink-browserkit-driver": "^2.1", "behat/mink-selenium2-driver": "^1.4", "colinodell/psr-testlogger": "^1.2", - "composer/composer": "^2.6.4", + "composer/composer": "^2.7", "drupal/coder": "^8.3.10", "instaclick/php-webdriver": "^1.4.1", "justinrainbow/json-schema": "^5.2", - "mglaman/phpstan-drupal": "^1.1.34", + "mglaman/phpstan-drupal": "^1.2.1", + "micheh/phpcs-gitlab": "^1.1", "mikey179/vfsstream": "^1.6.11", + "open-telemetry/exporter-otlp": "^1", + "open-telemetry/sdk": "^1", + "php-http/guzzle7-adapter": "^1.0", "phpspec/prophecy-phpunit": "^2", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.10.1", + "phpstan/phpstan": "^1.10.47", "phpstan/phpstan-phpunit": "^1.3.11", - "phpunit/phpunit": "^9.5", - "symfony/browser-kit": "^6.3", - "symfony/css-selector": "^6.3", - "symfony/dom-crawler": "^6.3", - "symfony/error-handler": "^6.3", - "symfony/filesystem": "^6.3", - "symfony/finder": "^6.3", - "symfony/lock": "^6.3", - "symfony/phpunit-bridge": "^6.3", - "symfony/var-dumper": "^6.3" + "phpunit/phpunit": "^9.6.13", + "symfony/browser-kit": "^6.4", + "symfony/css-selector": "^6.4", + "symfony/dom-crawler": "^6.4", + "symfony/error-handler": "^6.4", + "symfony/lock": "^6.4", + "symfony/phpunit-bridge": "^6.4", + "symfony/var-dumper": "^6.4" }, "conflict": { "webflo/drupal-core-require-dev": "*" @@ -22421,35 +22359,36 @@ ], "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/10.1.8" + "source": "https://github.com/drupal/core-dev/tree/10.2.5" }, - "time": "2023-10-05T21:10:12+00:00" + "time": "2024-02-14T18:07:20+00:00" }, { "name": "drupal/devel", - "version": "5.1.2", + "version": "5.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/devel.git", - "reference": "5.1.2" + "reference": "5.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip", - "reference": "5.1.2", - "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f" + "url": "https://ftp.drupal.org/files/projects/devel-5.2.1.zip", + "reference": "5.2.1", + "shasum": "793861751e01092fe8bc7c0cd47589ebea2bb8df" }, "require": { "doctrine/common": "^2.7 || ^3.4", - "drupal/core": "^9 || ^10", - "php": ">=7.4", + "drupal/core": ">=10.0 <12.0.0-stable", + "php": ">=8.1", "symfony/var-dumper": "^4 || ^5 || ^6" }, "conflict": { + "drush/drush": "<12.5.1", "kint-php/kint": "<3" }, "require-dev": { - "drush/drush": "^11" + "drush/drush": "^12.5.1" }, "suggest": { "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing." @@ -22457,17 +22396,12 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "5.1.2", - "datestamp": "1686161028", + "version": "5.2.1", + "datestamp": "1711328410", "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", @@ -22475,10 +22409,6 @@ "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" @@ -22614,32 +22544,35 @@ }, { "name": "drupal/upgrade_status", - "version": "4.1.0", + "version": "4.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "4.1.0" + "reference": "4.3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.1.0.zip", - "reference": "4.1.0", - "shasum": "b306740b7e952f3d6bb71a2e0a165d48977e732a" + "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.0.zip", + "reference": "4.3.0", + "shasum": "d6eaf37d4d543b130595410be3d64a60ca280eab" }, "require": { "dekor/php-array-table": "^2.0", "drupal/core": "^9 || ^10", "mglaman/phpstan-drupal": "^1.0.0", - "nikic/php-parser": "^4.0.0", + "nikic/php-parser": "^4.0.0|^5.0.0", "phpstan/phpstan-deprecation-rules": "^1.0.0", "symfony/process": "^3.4|^4.0|^5.0|^6.0", "webflo/drupal-finder": "^1.2" }, + "require-dev": { + "drush/drush": "^11|^12" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.0", - "datestamp": "1708602507", + "version": "4.3.0", + "datestamp": "1714308227", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -22750,18 +22683,62 @@ }, "time": "2024-01-02T13:46:09+00:00" }, + { + "name": "google/protobuf", + "version": "v3.25.3", + "source": { + "type": "git", + "url": "https://github.com/protocolbuffers/protobuf-php.git", + "reference": "983a87f4f8798a90ca3a25b0f300b8fda38df643" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/983a87f4f8798a90ca3a25b0f300b8fda38df643", + "reference": "983a87f4f8798a90ca3a25b0f300b8fda38df643", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": ">=5.0.0" + }, + "suggest": { + "ext-bcmath": "Need to support JSON deserialization" + }, + "type": "library", + "autoload": { + "psr-4": { + "Google\\Protobuf\\": "src/Google/Protobuf", + "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "proto library for PHP", + "homepage": "https://developers.google.com/protocol-buffers/", + "keywords": [ + "proto" + ], + "support": { + "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.3" + }, + "time": "2024-02-15T21:11:49+00:00" + }, { "name": "instaclick/php-webdriver", - "version": "1.4.18", + "version": "1.4.19", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "a61a8459f86c79dd1f19934ea3929804f2e41f8c" + "reference": "3b2a2ddc4e0a690cc691d7e5952964cc4b9538b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a61a8459f86c79dd1f19934ea3929804f2e41f8c", - "reference": "a61a8459f86c79dd1f19934ea3929804f2e41f8c", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/3b2a2ddc4e0a690cc691d7e5952964cc4b9538b1", + "reference": "3b2a2ddc4e0a690cc691d7e5952964cc4b9538b1", "shasum": "" }, "require": { @@ -22809,9 +22786,9 @@ ], "support": { "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.18" + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.19" }, - "time": "2023-12-08T07:11:19+00:00" + "time": "2024-03-19T01:58:53+00:00" }, { "name": "league/html-to-markdown", @@ -22904,16 +22881,16 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.2.7", + "version": "1.2.10", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "32f79fcf48c74532014248687ae3850581a22416" + "reference": "cdafb3285beeb5fadf25a43e18fee6f80bb14575" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/32f79fcf48c74532014248687ae3850581a22416", - "reference": "32f79fcf48c74532014248687ae3850581a22416", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/cdafb3285beeb5fadf25a43e18fee6f80bb14575", + "reference": "cdafb3285beeb5fadf25a43e18fee6f80bb14575", "shasum": "" }, "require": { @@ -22927,7 +22904,7 @@ "require-dev": { "behat/mink": "^1.8", "composer/installers": "^1.9", - "drupal/core-recommended": "^9.0", + "drupal/core-recommended": "^10", "drush/drush": "^10.0 || ^11 || ^12", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-strict-rules": "^1.0", @@ -22988,7 +22965,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.7" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.10" }, "funding": [ { @@ -23004,176 +22981,873 @@ "type": "tidelift" } ], - "time": "2024-02-14T04:38:08+00:00" + "time": "2024-04-02T17:27:29+00:00" + }, + { + "name": "micheh/phpcs-gitlab", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/micheh/phpcs-gitlab.git", + "reference": "fd64e6579d9e30a82abba616fabcb9a2c837c7a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/micheh/phpcs-gitlab/zipball/fd64e6579d9e30a82abba616fabcb9a2c837c7a8", + "reference": "fd64e6579d9e30a82abba616fabcb9a2c837c7a8", + "shasum": "" + }, + "require": { + "ext-json": "*" + }, + "require-dev": { + "phpunit/phpunit": "^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.3.1", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Micheh\\PhpCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Michel Hunziker", + "email": "info@michelhunziker.com" + } + ], + "description": "Gitlab Report for PHP_CodeSniffer (display the violations in the Gitlab CI/CD Code Quality Report)", + "keywords": [ + "PHP_CodeSniffer", + "code quality", + "gitlab", + "phpcs", + "report" + ], + "support": { + "issues": "https://github.com/micheh/phpcs-gitlab/issues", + "source": "https://github.com/micheh/phpcs-gitlab/tree/1.1.0" + }, + "time": "2020-12-20T09:39:07+00:00" }, { "name": "mikey179/vfsstream", "version": "v1.6.11", "source": { "type": "git", - "url": "https://github.com/bovigo/vfsStream.git", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + "url": "https://github.com/bovigo/vfsStream.git", + "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.5|^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-0": { + "org\\bovigo\\vfs\\": "src/main/php" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Frank Kleine", + "homepage": "http://frankkleine.de/", + "role": "Developer" + } + ], + "description": "Virtual file system to mock the real file system in unit tests.", + "homepage": "http://vfs.bovigo.org/", + "support": { + "issues": "https://github.com/bovigo/vfsStream/issues", + "source": "https://github.com/bovigo/vfsStream/tree/master", + "wiki": "https://github.com/bovigo/vfsStream/wiki" + }, + "time": "2022-02-23T02:02:42+00:00" + }, + { + "name": "open-telemetry/api", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/api.git", + "reference": "87de95d926f46262885d0d390060c095af13e2e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/87de95d926f46262885d0d390060c095af13e2e5", + "reference": "87de95d926f46262885d0d390060c095af13e2e5", + "shasum": "" + }, + "require": { + "open-telemetry/context": "^1.0", + "php": "^7.4 || ^8.0", + "psr/log": "^1.1|^2.0|^3.0", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "conflict": { + "open-telemetry/sdk": "<=1.0.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "Trace/functions.php" + ], + "psr-4": { + "OpenTelemetry\\API\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "API for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "api", + "apm", + "logging", + "opentelemetry", + "otel", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-06T01:32:25+00:00" + }, + { + "name": "open-telemetry/context", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/context.git", + "reference": "e9d254a7c89885e63fd2fde54e31e81aaaf52b7c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/e9d254a7c89885e63fd2fde54e31e81aaaf52b7c", + "reference": "e9d254a7c89885e63fd2fde54e31e81aaaf52b7c", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "suggest": { + "ext-ffi": "To allow context switching in Fibers" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "fiber/initialize_fiber_handler.php" + ], + "psr-4": { + "OpenTelemetry\\Context\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "Context implementation for OpenTelemetry PHP.", + "keywords": [ + "Context", + "opentelemetry", + "otel" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-01-13T05:50:44+00:00" + }, + { + "name": "open-telemetry/exporter-otlp", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/exporter-otlp.git", + "reference": "342686bfce05867b56561a0af2fc8a4a8f27b3cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/exporter-otlp/zipball/342686bfce05867b56561a0af2fc8a4a8f27b3cc", + "reference": "342686bfce05867b56561a0af2fc8a4a8f27b3cc", + "shasum": "" + }, + "require": { + "open-telemetry/api": "^1.0", + "open-telemetry/gen-otlp-protobuf": "^1.1", + "open-telemetry/sdk": "^1.0", + "php": "^7.4 || ^8.0", + "php-http/discovery": "^1.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "_register.php" + ], + "psr-4": { + "OpenTelemetry\\Contrib\\Otlp\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "OTLP exporter for OpenTelemetry.", + "keywords": [ + "Metrics", + "exporter", + "gRPC", + "http", + "opentelemetry", + "otel", + "otlp", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-28T21:57:02+00:00" + }, + { + "name": "open-telemetry/gen-otlp-protobuf", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/gen-otlp-protobuf.git", + "reference": "76e2a44357f8c3fdcabcb070ec8a59e52ae3e3c3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/gen-otlp-protobuf/zipball/76e2a44357f8c3fdcabcb070ec8a59e52ae3e3c3", + "reference": "76e2a44357f8c3fdcabcb070ec8a59e52ae3e3c3", + "shasum": "" + }, + "require": { + "google/protobuf": "^3.3.0", + "php": "^7.4 || ^8.0" + }, + "suggest": { + "ext-protobuf": "For better performance, when dealing with the protobuf format" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opentelemetry\\Proto\\": "Opentelemetry/Proto/", + "GPBMetadata\\Opentelemetry\\": "GPBMetadata/Opentelemetry/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "PHP protobuf files for communication with OpenTelemetry OTLP collectors/servers.", + "keywords": [ + "Metrics", + "apm", + "gRPC", + "logging", + "opentelemetry", + "otel", + "otlp", + "protobuf", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-01-16T21:54:57+00:00" + }, + { + "name": "open-telemetry/sdk", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/sdk.git", + "reference": "1da4c0ca4f1a3c0fe84b81729dadec16f464fa77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/sdk/zipball/1da4c0ca4f1a3c0fe84b81729dadec16f464fa77", + "reference": "1da4c0ca4f1a3c0fe84b81729dadec16f464fa77", + "shasum": "" + }, + "require": { + "ext-json": "*", + "open-telemetry/api": "^1.0", + "open-telemetry/context": "^1.0", + "open-telemetry/sem-conv": "^1.0", + "php": "^7.4 || ^8.0", + "php-http/discovery": "^1.14", + "psr/http-client": "^1.0", + "psr/http-client-implementation": "^1.0", + "psr/http-factory-implementation": "^1.0", + "psr/http-message": "^1.0.1|^2.0", + "psr/log": "^1.1|^2.0|^3.0", + "symfony/polyfill-mbstring": "^1.23", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "suggest": { + "ext-gmp": "To support unlimited number of synchronous metric readers", + "ext-mbstring": "To increase performance of string operations" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "Common/Util/functions.php", + "Logs/Exporter/_register.php", + "Metrics/MetricExporter/_register.php", + "Propagation/_register.php", + "Trace/SpanExporter/_register.php", + "Common/Dev/Compatibility/_load.php", + "_autoload.php" + ], + "psr-4": { + "OpenTelemetry\\SDK\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "SDK for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "sdk", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-02T03:42:40+00:00" + }, + { + "name": "open-telemetry/sem-conv", + "version": "1.25.0", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/sem-conv.git", + "reference": "23f457ba390847647a17068e0095d9ffe9a4824c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/sem-conv/zipball/23f457ba390847647a17068e0095d9ffe9a4824c", + "reference": "23f457ba390847647a17068e0095d9ffe9a4824c", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "OpenTelemetry\\SemConv\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "Semantic conventions for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "semantic conventions", + "semconv", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-04-09T23:31:35+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "php-http/discovery", + "version": "1.19.4", + "source": { + "type": "git", + "url": "https://github.com/php-http/discovery.git", + "reference": "0700efda8d7526335132360167315fdab3aeb599" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599", + "reference": "0700efda8d7526335132360167315fdab3aeb599", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0|^2.0", + "php": "^7.1 || ^8.0" + }, + "conflict": { + "nyholm/psr7": "<1.0", + "zendframework/zend-diactoros": "*" + }, + "provide": { + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "*", + "psr/http-factory-implementation": "*", + "psr/http-message-implementation": "*" + }, + "require-dev": { + "composer/composer": "^1.0.2|^2.0", + "graham-campbell/phpspec-skip-example-extension": "^5.0", + "php-http/httplug": "^1.0 || ^2.0", + "php-http/message-factory": "^1.0", + "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", + "sebastian/comparator": "^3.0.5 || ^4.0.8", + "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1" + }, + "type": "composer-plugin", + "extra": { + "class": "Http\\Discovery\\Composer\\Plugin", + "plugin-optional": true + }, + "autoload": { + "psr-4": { + "Http\\Discovery\\": "src/" + }, + "exclude-from-classmap": [ + "src/Composer/Plugin.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations", + "homepage": "http://php-http.org", + "keywords": [ + "adapter", + "client", + "discovery", + "factory", + "http", + "message", + "psr17", + "psr7" + ], + "support": { + "issues": "https://github.com/php-http/discovery/issues", + "source": "https://github.com/php-http/discovery/tree/1.19.4" + }, + "time": "2024-03-29T13:00:05+00:00" + }, + { + "name": "php-http/guzzle7-adapter", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/guzzle7-adapter.git", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", "shasum": "" }, "require": { - "php": ">=5.3.0" + "guzzlehttp/guzzle": "^7.0", + "php": "^7.2 | ^8.0", + "php-http/httplug": "^2.0", + "psr/http-client": "^1.0" + }, + "provide": { + "php-http/async-client-implementation": "1.0", + "php-http/client-implementation": "1.0", + "psr/http-client-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^4.5|^5.0" + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "0.2.x-dev" } }, "autoload": { - "psr-0": { - "org\\bovigo\\vfs\\": "src/main/php" + "psr-4": { + "Http\\Adapter\\Guzzle7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Frank Kleine", - "homepage": "http://frankkleine.de/", - "role": "Developer" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" } ], - "description": "Virtual file system to mock the real file system in unit tests.", - "homepage": "http://vfs.bovigo.org/", + "description": "Guzzle 7 HTTP Adapter", + "homepage": "http://httplug.io", + "keywords": [ + "Guzzle", + "http" + ], "support": { - "issues": "https://github.com/bovigo/vfsStream/issues", - "source": "https://github.com/bovigo/vfsStream/tree/master", - "wiki": "https://github.com/bovigo/vfsStream/wiki" + "issues": "https://github.com/php-http/guzzle7-adapter/issues", + "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0" }, - "time": "2022-02-23T02:02:42+00:00" + "time": "2021-03-09T07:35:15+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.4", + "name": "php-http/httplug", + "version": "2.4.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "54750ef60c58e43759730615a392c31c80e23176" + "url": "https://github.com/php-http/httplug.git", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", - "reference": "54750ef60c58e43759730615a392c31c80e23176", + "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "php": "^7.1 || ^8.0", + "php-http/promise": "^1.1", + "psr/http-client": "^1.0", + "psr/http-message": "^1.0 || ^2.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } + "require-dev": { + "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" }, + "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Http\\Client\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Eric GELOEN", + "email": "geloen.eric@gmail.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "description": "HTTPlug, the HTTP client abstraction for PHP", + "homepage": "http://httplug.io", + "keywords": [ + "client", + "http" + ], "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.4" + "issues": "https://github.com/php-http/httplug/issues", + "source": "https://github.com/php-http/httplug/tree/2.4.0" }, - "funding": [ - { - "url": "https://github.com/theseer", - "type": "github" - } - ], - "time": "2024-03-03T12:33:53+00:00" + "time": "2023-04-14T15:10:03+00:00" }, { - "name": "phar-io/version", - "version": "3.2.1", + "name": "php-http/promise", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + "url": "https://github.com/php-http/promise.git", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", + "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" }, "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Http\\Promise\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Joel Wurtz", + "email": "joel.wurtz@gmail.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" } ], - "description": "Library for handling version information and constraints", + "description": "Promise used for asynchronous HTTP requests", + "homepage": "http://httplug.io", + "keywords": [ + "promise" + ], "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "issues": "https://github.com/php-http/promise/issues", + "source": "https://github.com/php-http/promise/tree/1.3.1" }, - "time": "2022-02-21T01:04:05+00:00" + "time": "2024-03-15T13:55:21+00:00" }, { "name": "php-webdriver/webdriver", @@ -23630,16 +24304,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.60", + "version": "1.10.67", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "95dcea7d6c628a3f2f56d091d8a0219485a86bbe" + "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/95dcea7d6c628a3f2f56d091d8a0219485a86bbe", - "reference": "95dcea7d6c628a3f2f56d091d8a0219485a86bbe", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/16ddbe776f10da6a95ebd25de7c1dbed397dc493", + "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493", "shasum": "" }, "require": { @@ -23682,13 +24356,9 @@ { "url": "https://github.com/phpstan", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", - "type": "tidelift" } ], - "time": "2024-03-07T13:30:19+00:00" + "time": "2024-04-16T07:22:02+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -24111,16 +24781,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.17", + "version": "9.6.19", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd" + "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1a156980d78a6666721b7e8e8502fe210b587fcd", - "reference": "1a156980d78a6666721b7e8e8502fe210b587fcd", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8", + "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8", "shasum": "" }, "require": { @@ -24194,7 +24864,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.17" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19" }, "funding": [ { @@ -24210,7 +24880,7 @@ "type": "tidelift" } ], - "time": "2024-02-23T13:14:51+00:00" + "time": "2024-04-05T04:35:58+00:00" }, { "name": "react/promise", @@ -25021,16 +25691,16 @@ }, { "name": "sebastian/resource-operations", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e", "shasum": "" }, "require": { @@ -25042,7 +25712,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -25063,8 +25733,7 @@ "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4" }, "funding": [ { @@ -25072,7 +25741,7 @@ "type": "github" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2024-03-14T16:00:52+00:00" }, { "name": "sebastian/type", @@ -25454,16 +26123,16 @@ }, { "name": "symfony/browser-kit", - "version": "v6.4.3", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "495ffa2e6d17e199213f93768efa01af32bbf70e" + "reference": "c276856598f70e96f75403fc04841cec1dc56e74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/495ffa2e6d17e199213f93768efa01af32bbf70e", - "reference": "495ffa2e6d17e199213f93768efa01af32bbf70e", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c276856598f70e96f75403fc04841cec1dc56e74", + "reference": "c276856598f70e96f75403fc04841cec1dc56e74", "shasum": "" }, "require": { @@ -25502,7 +26171,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v6.4.3" + "source": "https://github.com/symfony/browser-kit/tree/v6.4.7" }, "funding": [ { @@ -25518,20 +26187,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/lock", - "version": "v6.4.3", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "1cabf3cc775b1aa6008ebd471fa773444af4e956" + "reference": "c6b3959c418a7c1115c060fab77927ca4bd2546a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/1cabf3cc775b1aa6008ebd471fa773444af4e956", - "reference": "1cabf3cc775b1aa6008ebd471fa773444af4e956", + "url": "https://api.github.com/repos/symfony/lock/zipball/c6b3959c418a7c1115c060fab77927ca4bd2546a", + "reference": "c6b3959c418a7c1115c060fab77927ca4bd2546a", "shasum": "" }, "require": { @@ -25581,7 +26250,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v6.4.3" + "source": "https://github.com/symfony/lock/tree/v6.4.7" }, "funding": [ { @@ -25597,20 +26266,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v6.4.4", + "version": "v6.4.7", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "16ed5bdfd18e14fc7de347c8688e8ac479284222" + "reference": "a33ca737283c76617c4089a8425c7785b344e283" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/16ed5bdfd18e14fc7de347c8688e8ac479284222", - "reference": "16ed5bdfd18e14fc7de347c8688e8ac479284222", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a33ca737283c76617c4089a8425c7785b344e283", + "reference": "a33ca737283c76617c4089a8425c7785b344e283", "shasum": "" }, "require": { @@ -25662,7 +26331,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.4" + "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.7" }, "funding": [ { @@ -25678,7 +26347,7 @@ "type": "tidelift" } ], - "time": "2024-02-08T14:08:19+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/polyfill-php73", @@ -25756,6 +26425,82 @@ ], "time": "2024-01-29T20:11:03+00:00" }, + { + "name": "symfony/polyfill-php82", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php82.git", + "reference": "559d488c38784112c78b9bf17c5ce8366a265643" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/559d488c38784112c78b9bf17c5ce8366a265643", + "reference": "559d488c38784112c78b9bf17c5ce8366a265643", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php82\\": "" + }, + "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.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php82/tree/v1.29.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": "2024-01-29T20:11:03+00:00" + }, { "name": "theseer/tokenizer", "version": "1.2.3", @@ -25805,6 +26550,64 @@ } ], "time": "2024-03-03T12:36:25+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" } ], "aliases": [], @@ -25815,7 +26618,6 @@ "drupal/config_readonly": 10, "drupal/confirm_leave": 10, "drupal/default_content": 15, - "drupal/diff": 5, "drupal/element_class_formatter": 10, "drupal/field_group": 5, "drupal/field_permissions": 5, diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_breadcrumbs.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_breadcrumbs.yml similarity index 76% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_breadcrumbs.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_breadcrumbs.yml index 371f8369f..fc81f9061 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_breadcrumbs.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_breadcrumbs.yml @@ -5,11 +5,11 @@ dependencies: module: - system theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: SwnldptIou9q4oHNPhlB3l98-TLpVWf_Luj2xPy5sbc -id: stanford_profile_admin_breadcrumbs -theme: stanford_profile_admin +id: stanford_profile_admin_theme_breadcrumbs +theme: stanford_profile_admin_theme region: breadcrumb weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_content.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_content.yml similarity index 77% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_content.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_content.yml index abb264a5a..1a0d27e96 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_content.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_content.yml @@ -5,11 +5,11 @@ dependencies: module: - system theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: jgggdNqu50_Ny2fZl8mszrzRpX2lo74UXhfThCBVr3A -id: stanford_profile_admin_content -theme: stanford_profile_admin +id: stanford_profile_admin_theme_content +theme: stanford_profile_admin_theme region: content weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_help.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_help.yml similarity index 75% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_help.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_help.yml index c9531e435..69f4f8f73 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_help.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_help.yml @@ -5,11 +5,11 @@ dependencies: module: - help theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: dG9OciTVvWopPKuUXP5eMez2i2tr7byANDwzSzokkF4 -id: stanford_profile_admin_help -theme: stanford_profile_admin +id: stanford_profile_admin_theme_help +theme: stanford_profile_admin_theme region: help weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_local_actions.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_local_actions.yml similarity index 75% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_local_actions.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_local_actions.yml index 7804cf87f..7ce03eb91 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_local_actions.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_local_actions.yml @@ -3,11 +3,11 @@ langcode: en status: true dependencies: theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: AgaHIDwEqPOCLqv98q-DvW9qGg9BZkYrxND6dMDMdkE -id: stanford_profile_admin_local_actions -theme: stanford_profile_admin +id: stanford_profile_admin_theme_local_actions +theme: stanford_profile_admin_theme region: content weight: -10 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_messages.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_messages.yml similarity index 77% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_messages.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_messages.yml index 695b3a519..c6fec222d 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_messages.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_messages.yml @@ -5,11 +5,11 @@ dependencies: module: - system theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: DvkoOGCIrHsmERvowtdTqizSlKf7oMBY3L_6QYSwGWY -id: stanford_profile_admin_messages -theme: stanford_profile_admin +id: stanford_profile_admin_theme_messages +theme: stanford_profile_admin_theme region: highlighted weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_page_title.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_page_title.yml similarity index 74% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_page_title.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_page_title.yml index d4c45084a..a4d5b8ae8 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_page_title.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_page_title.yml @@ -3,11 +3,11 @@ langcode: en status: true dependencies: theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: lhnflyBXTmG9VVPt76oQekDcheUOpXLsTLbqDM2Pu8c -id: stanford_profile_admin_page_title -theme: stanford_profile_admin +id: stanford_profile_admin_theme_page_title +theme: stanford_profile_admin_theme region: header weight: -30 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_primary_local_tasks.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_primary_local_tasks.yml similarity index 75% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_primary_local_tasks.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_primary_local_tasks.yml index 6d5db8199..896085b9c 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_primary_local_tasks.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_primary_local_tasks.yml @@ -3,11 +3,11 @@ langcode: en status: true dependencies: theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: pX1oRCtS3INT9-ula1W3x4JskdD7sJnVkqKcK503bSk -id: stanford_profile_admin_primary_local_tasks -theme: stanford_profile_admin +id: stanford_profile_admin_theme_primary_local_tasks +theme: stanford_profile_admin_theme region: header weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_secondary_local_tasks.yml b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_secondary_local_tasks.yml similarity index 75% rename from docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_secondary_local_tasks.yml rename to docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_secondary_local_tasks.yml index 43e27bdc9..05d2bf767 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_secondary_local_tasks.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/block.block.stanford_profile_admin_theme_secondary_local_tasks.yml @@ -3,11 +3,11 @@ langcode: en status: true dependencies: theme: - - stanford_profile_admin + - stanford_profile_admin_theme _core: default_config_hash: MhIh9_GCAHvUrlRADpeNHS8gDK2DQGFbuAWmw_xUfrY -id: stanford_profile_admin_secondary_local_tasks -theme: stanford_profile_admin +id: stanford_profile_admin_theme_secondary_local_tasks +theme: stanford_profile_admin_theme region: pre_content weight: 0 provider: null diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/chosen.settings.yml b/docroot/profiles/sdss/sdss_profile/config/sync/chosen.settings.yml index eb08160df..90530a0a4 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/chosen.settings.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/chosen.settings.yml @@ -15,7 +15,7 @@ disabled_themes: minimally_branded_subtheme: '0' sdss_subtheme: '0' stanford_basic: '0' - stanford_profile_admin: '0' + stanford_profile_admin_theme: '0' chosen_include: 2 placeholder_text_multiple: 'Choose some options' placeholder_text_single: 'Choose an option' diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.config_pages.stanford_local_footer.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.config_pages.stanford_local_footer.default.yml index e2b3bc69e..c22a98dd5 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.config_pages.stanford_local_footer.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.config_pages.stanford_local_footer.default.yml @@ -106,7 +106,6 @@ third_party_settings: - su_local_foot_pr_co - su_local_foot_se_co - su_local_foot_tr2_co - - su_local_foot_tr_co label: 'Content Blocks' region: content parent_name: '' @@ -119,18 +118,11 @@ third_party_settings: description: '' required_fields: true group_lockup_options: - children: - - su_local_foot_help - - su_local_foot_line_1 - - su_local_foot_line_2 - - su_local_foot_line_3 - - su_local_foot_line_4 - - su_local_foot_line_5 - - su_local_foot_loc_op + children: { } label: 'Lockup Options' region: hidden parent_name: '' - weight: 8 + weight: 10 format_type: details format_settings: classes: '' @@ -140,13 +132,11 @@ third_party_settings: description: '' required_fields: false group_logo_image: - children: - - su_local_foot_loc_img - - su_local_foot_use_logo + children: { } label: 'Logo Image' region: hidden parent_name: '' - weight: 9 + weight: 11 format_type: details format_settings: classes: '' @@ -231,7 +221,8 @@ content: type: address_default weight: 1 region: content - settings: { } + settings: + wrapper_type: details third_party_settings: { } su_local_foot_f_button: type: string_textfield @@ -337,13 +328,6 @@ content: rows: 5 placeholder: '' third_party_settings: { } - su_local_foot_tr_co: - type: text_textarea - weight: 20 - region: content - settings: - rows: 5 - placeholder: '' - third_party_settings: { } hidden: label: true + su_local_foot_tr_co: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_event.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_event.default.yml index 7a02a8fb1..fd79fbd7e 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_event.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_event.default.yml @@ -280,7 +280,8 @@ content: type: address_default weight: 23 region: content - settings: { } + settings: + wrapper_type: details third_party_settings: { } su_event_map_link: type: link_default diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_news.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_news.default.yml index 2e9601fb1..d8cbf3e5d 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_news.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.node.stanford_news.default.yml @@ -16,7 +16,6 @@ dependencies: - field.field.node.stanford_news.su_news_source - field.field.node.stanford_news.su_news_topics - field.field.node.stanford_news.su_sdss_import_source - - field.field.node.stanford_news.su_sdss_magazine_topics - field.field.node.stanford_news.su_sdss_media_contacts - field.field.node.stanford_news.su_sdss_media_mention - field.field.node.stanford_news.su_sdss_news_banner_caption @@ -94,7 +93,6 @@ third_party_settings: children: - su_shared_tags - su_news_topics - - su_sdss_magazine_topics - su_sdss_news_organization - su_sdss_news_research_area - su_sdss_news_focal_areas @@ -232,19 +230,6 @@ content: required_depth: 0 none_label: '- Please select -' third_party_settings: { } - su_sdss_magazine_topics: - type: cshs - weight: 12 - region: content - settings: - save_lineage: false - force_deepest: false - parent: '' - level_labels: '' - hierarchy_depth: 0 - required_depth: 0 - none_label: '- Please select -' - third_party_settings: { } su_sdss_media_contacts: type: inline_entity_form_complex weight: 12 diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.paragraph.stanford_schedule.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.paragraph.stanford_schedule.default.yml index 8b691e29f..8b0c3d5e0 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.paragraph.stanford_schedule.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.paragraph.stanford_schedule.default.yml @@ -48,7 +48,8 @@ content: type: address_default weight: 3 region: content - settings: { } + settings: + wrapper_type: details third_party_settings: { } su_schedule_speaker: type: paragraphs diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.taxonomy_term.sdss_magazine_topics.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.taxonomy_term.sdss_magazine_topics.default.yml deleted file mode 100644 index 7ce73ed4f..000000000 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_display.taxonomy_term.sdss_magazine_topics.default.yml +++ /dev/null @@ -1,46 +0,0 @@ -uuid: 79598f2d-c62a-4363-abb6-0c6ba4099f73 -langcode: en -status: true -dependencies: - config: - - taxonomy.vocabulary.sdss_magazine_topics - module: - - path - - text -id: taxonomy_term.sdss_magazine_topics.default -targetEntityType: taxonomy_term -bundle: sdss_magazine_topics -mode: default -content: - description: - type: text_textfield - weight: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - name: - type: string_textfield - weight: -5 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } -hidden: - publish_on: true - unpublish_on: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.media.media_library.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.media.media_library.yml index d7f012e87..458b528e5 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.media.media_library.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.media.media_library.yml @@ -11,5 +11,6 @@ _core: default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 id: media.media_library label: 'Media library' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.user.register.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.user.register.yml index 5dd651f19..a5ed21a93 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.user.register.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_form_mode.user.register.yml @@ -8,5 +8,6 @@ _core: default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI id: user.register label: Register +description: '' targetEntityType: user cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.config_pages.stanford_local_footer.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.config_pages.stanford_local_footer.default.yml index 1494bf9f7..efb1cf2f9 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.config_pages.stanford_local_footer.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.config_pages.stanford_local_footer.default.yml @@ -46,8 +46,6 @@ third_party_settings: cell2: - su_local_foot_se_co - su_local_foot_tr2_co - cell3: - - su_local_foot_tr_co address: - su_local_foot_address action_links: @@ -97,14 +95,14 @@ content: class: '' ds: ds_limit: '' - weight: 6 + weight: 5 region: action_links su_local_foot_address: type: address_default label: hidden settings: { } third_party_settings: { } - weight: 5 + weight: 4 region: address su_local_foot_f_button: type: string @@ -112,21 +110,21 @@ content: settings: link_to_entity: false third_party_settings: { } - weight: 15 + weight: 14 region: signup_form_field_submit_value su_local_foot_f_intro: type: text_default label: hidden settings: { } third_party_settings: { } - weight: 12 + weight: 11 region: signup_form_content su_local_foot_f_method: type: list_default label: hidden settings: { } third_party_settings: { } - weight: 14 + weight: 13 region: signup_form_method su_local_foot_f_url: type: link @@ -140,7 +138,7 @@ content: third_party_settings: field_formatter_class: class: '' - weight: 13 + weight: 12 region: signup_form_action su_local_foot_pr_co: type: text_default @@ -163,7 +161,7 @@ content: class: '' ds: ds_limit: '' - weight: 9 + weight: 8 region: primary_links su_local_foot_prime_h: type: string @@ -171,7 +169,7 @@ content: settings: link_to_entity: false third_party_settings: { } - weight: 8 + weight: 7 region: primary_links_header su_local_foot_se_co: type: text_default @@ -194,7 +192,7 @@ content: class: '' ds: ds_limit: '' - weight: 11 + weight: 10 region: secondary_links su_local_foot_second_h: type: string @@ -202,7 +200,7 @@ content: settings: link_to_entity: false third_party_settings: { } - weight: 10 + weight: 9 region: secondary_links_header su_local_foot_social: type: link @@ -218,7 +216,7 @@ content: class: '' ds: ds_limit: '' - weight: 7 + weight: 6 region: social_links su_local_foot_sunet_t: type: string @@ -226,7 +224,7 @@ content: settings: link_to_entity: false third_party_settings: { } - weight: 16 + weight: 15 region: weblogin_text su_local_foot_tr2_co: type: text_default @@ -235,13 +233,7 @@ content: third_party_settings: { } weight: 3 region: cell2 - su_local_foot_tr_co: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 4 - region: cell3 hidden: search_api_excerpt: true su_footer_enabled: true + su_local_foot_tr_co: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.default.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.default.yml index 7196d6f79..831431c49 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.default.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.default.yml @@ -17,7 +17,6 @@ dependencies: - field.field.node.stanford_news.su_news_source - field.field.node.stanford_news.su_news_topics - field.field.node.stanford_news.su_sdss_import_source - - field.field.node.stanford_news.su_sdss_magazine_topics - field.field.node.stanford_news.su_sdss_media_contacts - field.field.node.stanford_news.su_sdss_media_mention - field.field.node.stanford_news.su_sdss_news_banner_caption @@ -539,14 +538,6 @@ content: third_party_settings: { } weight: 15 region: main - su_sdss_magazine_topics: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 9 - region: main su_sdss_media_contacts: type: entity_reference_label label: above diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.search_indexing.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.search_indexing.yml index 359245075..45ac659d4 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.search_indexing.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.search_indexing.yml @@ -17,7 +17,6 @@ dependencies: - field.field.node.stanford_news.su_news_source - field.field.node.stanford_news.su_news_topics - field.field.node.stanford_news.su_sdss_import_source - - field.field.node.stanford_news.su_sdss_magazine_topics - field.field.node.stanford_news.su_sdss_media_contacts - field.field.node.stanford_news.su_sdss_media_mention - field.field.node.stanford_news.su_sdss_news_banner_caption @@ -137,7 +136,6 @@ hidden: su_metatags: true su_news_dek: true su_sdss_import_source: true - su_sdss_magazine_topics: true su_sdss_media_contacts: true su_sdss_media_mention: true su_sdss_news_banner_caption: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml index 537a28d0a..f1f155574 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml @@ -17,7 +17,6 @@ dependencies: - field.field.node.stanford_news.su_news_source - field.field.node.stanford_news.su_news_topics - field.field.node.stanford_news.su_sdss_import_source - - field.field.node.stanford_news.su_sdss_magazine_topics - field.field.node.stanford_news.su_sdss_media_contacts - field.field.node.stanford_news.su_sdss_media_mention - field.field.node.stanford_news.su_sdss_news_banner_caption @@ -184,7 +183,6 @@ hidden: su_news_components: true su_news_dek: true su_sdss_import_source: true - su_sdss_magazine_topics: true su_sdss_media_contacts: true su_sdss_media_mention: true su_sdss_news_banner_caption: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.teaser.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.teaser.yml index 548e9f444..9cb6c98e6 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.teaser.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_display.node.stanford_news.teaser.yml @@ -17,7 +17,6 @@ dependencies: - field.field.node.stanford_news.su_news_source - field.field.node.stanford_news.su_news_topics - field.field.node.stanford_news.su_sdss_import_source - - field.field.node.stanford_news.su_sdss_magazine_topics - field.field.node.stanford_news.su_sdss_media_contacts - field.field.node.stanford_news.su_sdss_media_mention - field.field.node.stanford_news.su_sdss_news_banner_caption @@ -223,7 +222,6 @@ hidden: su_news_source: true su_news_topics: true su_sdss_import_source: true - su_sdss_magazine_topics: true su_sdss_media_contacts: true su_sdss_media_mention: true su_sdss_news_banner_caption: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.block_content.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.block_content.full.yml index bf73d3034..15d9795f7 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.block_content.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.block_content.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg id: block_content.full label: Full +description: '' targetEntityType: block_content cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.apa.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.apa.yml index 69882fd30..dc3ad0d94 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.apa.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.apa.yml @@ -6,5 +6,6 @@ dependencies: - stanford_publication id: citation.apa label: APA +description: '' targetEntityType: citation cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.chicago.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.chicago.yml index 1254f6993..4abda8c26 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.chicago.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.citation.chicago.yml @@ -6,5 +6,6 @@ dependencies: - stanford_publication id: citation.chicago label: Chicago +description: '' targetEntityType: citation cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.config_pages.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.config_pages.full.yml index 25e4371b8..6a48c4d37 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.config_pages.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.config_pages.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: VYERDzPNi1-oUm7KMLjol4oLcjbHr-onKbitt4dZuN0 id: config_pages.full label: Full +description: '' targetEntityType: config_pages cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.full.yml index 467fd6b34..35148fb2d 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 id: media.full label: 'Full content' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.media_library.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.media_library.yml index 24b75df89..427b33ef7 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.media_library.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.media_library.yml @@ -11,5 +11,6 @@ _core: default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 id: media.media_library label: 'Media library' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large.yml index bd9bf04ba..08f4542bc 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_large label: 'Large (480px wide, un-cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large_square.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large_square.yml index 7f16ad901..746fd9359 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large_square.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_large_square.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_large_square label: 'Large square (480px, cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium.yml index 33298b003..e5ae5ca8a 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_medium label: 'Medium (220px wide, un-cropped) ' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium_square.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium_square.yml index 98af9871a..a29be405e 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium_square.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_medium_square.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_medium_square label: 'Medium square (220px, cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_stanford_circle.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_stanford_circle.yml index f19eba504..497199bf6 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_stanford_circle.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_stanford_circle.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_stanford_circle label: 'Circle headshot (112px, cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_thumb_square.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_thumb_square.yml index 0e03e3e4e..0ecd8dcae 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_thumb_square.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.stanford_image_thumb_square.yml @@ -6,5 +6,6 @@ dependencies: - media id: media.stanford_image_thumb_square label: 'Thumb (100px, cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.thumbnail.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.thumbnail.yml index 797a767d1..5414db9a4 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.thumbnail.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.media.thumbnail.yml @@ -8,5 +8,6 @@ _core: default_config_hash: 6lKEwketpQdX89N_7xP5lPFRpc9TiP2bUE0XK1deEkA id: media.thumbnail label: 'Thumb (100px wide, un-cropped)' +description: '' targetEntityType: media cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.menu_link_content.token.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.menu_link_content.token.yml index ae4ad5939..09e2cf6aa 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.menu_link_content.token.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.menu_link_content.token.yml @@ -6,5 +6,6 @@ dependencies: - menu_link_content id: menu_link_content.token label: Token +description: '' targetEntityType: menu_link_content cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.diff.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.diff.yml index e4899c260..72be3b859 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.diff.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.diff.yml @@ -12,5 +12,6 @@ _core: default_config_hash: pqZNtad5J9THcdbYjwPD4qINqvrTxnOd8KCWn6tUBRs id: node.diff label: 'Revision comparison' +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.full.yml index ff16af186..3553ca700 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk id: node.full label: 'Full content' +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.print.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.print.yml index eed082361..9cc90766e 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.print.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.print.yml @@ -11,5 +11,6 @@ _core: default_config_hash: es9asR8rmvOZwRXJRTBJ1TlLL1hzbVn4ZGuqR1pvU0E id: node.print label: Print +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.printable.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.printable.yml index ae068042f..af03e315c 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.printable.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.printable.yml @@ -11,5 +11,6 @@ _core: default_config_hash: ixCuR5U6Q6-4dIvMWUP6wWwkolzJaDQWuQrer5YJjT4 id: node.printable label: printable +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.revision.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.revision.yml index 2d1b00097..6b336b01e 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.revision.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.revision.yml @@ -12,5 +12,6 @@ _core: default_config_hash: 9KZ3WmwficPZQW4KRu0DdKX2V9A1Xiz5LFFm2NHg4_A id: node.revision label: Revision +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.search_indexing.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.search_indexing.yml index 4ea4489fc..1d4c5a28f 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.search_indexing.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.search_indexing.yml @@ -6,5 +6,6 @@ dependencies: - node id: node.search_indexing label: 'Search Indexing' +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.stanford_card.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.stanford_card.yml index 28b13bfb1..55ab53c98 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.stanford_card.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.stanford_card.yml @@ -6,5 +6,6 @@ dependencies: - node id: node.stanford_card label: Card +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.teaser.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.teaser.yml index c1fc346ef..47e2ec2a1 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.teaser.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.node.teaser.yml @@ -8,5 +8,6 @@ _core: default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 id: node.teaser label: Teaser +description: '' targetEntityType: node cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.varaint_3.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.varaint_3.yml index 69156d240..4bd63f5b7 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.varaint_3.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.varaint_3.yml @@ -6,5 +6,6 @@ dependencies: - paragraphs id: paragraph.varaint_3 label: 'Variant 3' +description: '' targetEntityType: paragraph cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_1.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_1.yml index efe984e9a..0081301de 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_1.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_1.yml @@ -6,5 +6,6 @@ dependencies: - paragraphs id: paragraph.variant_1 label: 'Variant 1' +description: '' targetEntityType: paragraph cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_2.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_2.yml index 76c0c130f..48c413db6 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_2.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.paragraph.variant_2.yml @@ -6,5 +6,6 @@ dependencies: - paragraphs id: paragraph.variant_2 label: 'Variant 2' +description: '' targetEntityType: paragraph cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.taxonomy_term.full.yml index defebd9fa..08ca5c6b9 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.taxonomy_term.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.taxonomy_term.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' id: taxonomy_term.full label: 'Taxonomy term page' +description: '' targetEntityType: taxonomy_term cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.compact.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.compact.yml index bcf6146e5..36917041b 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.compact.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.compact.yml @@ -8,5 +8,6 @@ _core: default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g id: user.compact label: Compact +description: '' targetEntityType: user cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.full.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.full.yml index 81a40cb9f..2413fdf36 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.full.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.entity_view_mode.user.full.yml @@ -8,5 +8,6 @@ _core: default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM id: user.full label: 'User account' +description: '' targetEntityType: user cache: true diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/core.extension.yml b/docroot/profiles/sdss/sdss_profile/config/sync/core.extension.yml index b56996b50..c40293d63 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/core.extension.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/core.extension.yml @@ -75,6 +75,13 @@ module: fontawesome: 0 google_analytics: 0 google_tag: 0 + graphql: 0 + graphql_compose: 0 + graphql_compose_layout_paragraphs: 0 + graphql_compose_layouts: 0 + graphql_compose_menus: 0 + graphql_compose_routes: 0 + graphql_compose_views: 0 help: 0 hook_event_dispatcher: 0 image: 0 @@ -132,7 +139,6 @@ module: oembed_lazyload: 0 oembed_providers: 0 options: 0 - page_cache: 0 page_manager: 0 page_manager_ui: 0 paragraphs_edit: 0 @@ -177,6 +183,7 @@ module: stanford_basic_page_types: 0 stanford_courses: 0 stanford_courses_importer: 0 + stanford_decoupled: 0 stanford_events: 0 stanford_events_importer: 0 stanford_events_series: 0 @@ -209,7 +216,7 @@ module: token: 0 token_or: 0 toolbar: 0 - transliterate_filenames: 0 + typed_data: 0 ui_patterns: 0 ui_patterns_ds: 0 ui_patterns_layouts: 0 @@ -251,5 +258,5 @@ theme: minimally_branded_subtheme: 0 sdss_subtheme: 0 claro: 0 - stanford_profile_admin: 0 + stanford_profile_admin_theme: 0 profile: sdss_profile diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_html.yml b/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_html.yml index ffd0c7558..7c0b6c349 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_html.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_html.yml @@ -97,8 +97,10 @@ settings: - heading4 - heading5 ckeditor5_list: - reversed: false - startIndex: true + properties: + reversed: false + startIndex: true + multiBlock: true ckeditor5_sourceEditing: allowed_tags: - '' diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_minimal_html.yml b/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_minimal_html.yml index 258f6e3d4..ee8948d96 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_minimal_html.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/editor.editor.stanford_minimal_html.yml @@ -28,8 +28,10 @@ settings: - redo plugins: ckeditor5_list: - reversed: true - startIndex: true + properties: + reversed: true + startIndex: true + multiBlock: true ckeditor5_sourceEditing: allowed_tags: - '

' diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_news.su_sdss_magazine_topics.yml b/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_news.su_sdss_magazine_topics.yml deleted file mode 100644 index 49644e8d2..000000000 --- a/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_news.su_sdss_magazine_topics.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: 0f81564c-2802-46ae-869f-4345c49559a0 -langcode: en -status: true -dependencies: - config: - - field.storage.node.su_sdss_magazine_topics - - node.type.stanford_news - - taxonomy.vocabulary.sdss_magazine_topics -id: node.stanford_news.su_sdss_magazine_topics -field_name: su_sdss_magazine_topics -entity_type: node -bundle: stanford_news -label: 'Magazine Topics' -description: '' -required: false -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - sdss_magazine_topics: sdss_magazine_topics - sort: - field: name - direction: asc - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_page.field_menulink.yml b/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_page.field_menulink.yml index 9a89e584b..3337bfbd2 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_page.field_menulink.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/field.field.node.stanford_page.field_menulink.yml @@ -20,6 +20,7 @@ default_value_callback: '' settings: available_menus: main: main + newsroom: newsroom admin: '0' courses-menu: '0' stanford-event-types: '0' diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/field.storage.node.su_sdss_magazine_topics.yml b/docroot/profiles/sdss/sdss_profile/config/sync/field.storage.node.su_sdss_magazine_topics.yml deleted file mode 100644 index 0886ad50a..000000000 --- a/docroot/profiles/sdss/sdss_profile/config/sync/field.storage.node.su_sdss_magazine_topics.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: e78cad5b-3db0-4de2-be4e-8c6a448fc205 -langcode: en -status: true -dependencies: - module: - - node - - taxonomy -id: node.su_sdss_magazine_topics -field_name: su_sdss_magazine_topics -entity_type: node -type: entity_reference -settings: - target_type: taxonomy_term -module: core -locked: false -cardinality: -1 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/file.settings.yml b/docroot/profiles/sdss/sdss_profile/config/sync/file.settings.yml index 1ca5bd99c..55d238d4c 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/file.settings.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/file.settings.yml @@ -6,3 +6,10 @@ description: icon: directory: core/modules/file/icons make_unused_managed_files_temporary: false +filename_sanitization: + transliterate: true + replace_whitespace: true + replace_non_alphanumeric: true + deduplicate_separators: true + lowercase: true + replacement_character: '-' diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.plain_text.yml b/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.plain_text.yml index 094d2946e..fe092b368 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.plain_text.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.plain_text.yml @@ -8,6 +8,12 @@ name: 'Plain text' format: plain_text weight: 10 filters: + filter_autop: + id: filter_autop + provider: filter + status: true + weight: 0 + settings: { } filter_html_escape: id: filter_html_escape provider: filter @@ -21,9 +27,3 @@ filters: weight: 0 settings: filter_url_length: 72 - filter_autop: - id: filter_autop - provider: filter - status: true - weight: 0 - settings: { } diff --git a/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.stanford_html.yml b/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.stanford_html.yml index 149adb9f8..9f765b55e 100644 --- a/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.stanford_html.yml +++ b/docroot/profiles/sdss/sdss_profile/config/sync/filter.format.stanford_html.yml @@ -28,31 +28,24 @@ filters: status: false weight: -37 settings: { } - filter_caption: - id: filter_caption + filter_align: + id: filter_align provider: filter status: true - weight: -47 + weight: -48 settings: { } - filter_html_escape: - id: filter_html_escape + filter_autop: + id: filter_autop provider: filter status: false - weight: -38 + weight: -36 settings: { } - filter_align: - id: filter_align + filter_caption: + id: filter_caption provider: filter status: true - weight: -48 + weight: -47 settings: { } - filter_url: - id: filter_url - provider: filter - status: true - weight: -45 - settings: - filter_url_length: 72 filter_html: id: filter_html provider: filter @@ -62,17 +55,11 @@ filters: allowed_html: '