diff --git a/composer.json b/composer.json index e35fb383e..428bf3a2a 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,8 @@ { "name": "acquia/acquia_cms", - "type": "drupal-module", "description": "An implementation of Drupal 9 for running custom, low code websites on the Acquia platform.", - "homepage": "https://github.com/acquia/acquia_cms", "license": "GPL-2.0-or-later", + "type": "drupal-module", "authors": [ { "name": "Michael Sherron", @@ -16,6 +15,7 @@ "role": "Maintainer" } ], + "homepage": "https://github.com/acquia/acquia_cms", "require": { "acquia/acquia-cms-starterkit": "1.1.5", "drupal/acquia_claro": "^1.3", @@ -43,123 +43,23 @@ "axelerant/drupal-quality-checker": "^1.1", "drupal/core-composer-scaffold": "^9.0.0 || ^10", "drupal/core-dev": "^9 || ^10", - "ergebnis/composer-normalize": "~2.15.0", + "ergebnis/composer-normalize": "^2.31.0", "mglaman/drupal-check": "^1.4", "oomphinc/composer-installers-extender": "^1.1 || ^2", "phpspec/prophecy-phpunit": "^2.0", "phpunit/phpunit": "^9.4.0", "weitzman/drupal-test-traits": "^2" }, - "config": { - "allow-plugins": { - "composer/installers": true, - "cweagans/composer-patches": true, - "dealerdirect/phpcodesniffer-composer-installer": true, - "drupal/core-composer-scaffold": true, - "ergebnis/composer-normalize": true, - "mnsami/composer-custom-directory-installer": true, - "oomphinc/composer-installers-extender": true, - "php-http/discovery": true, - "phpro/grumphp-shim": true, - "phpstan/extension-installer": true, - "webdriver-binary/binary-chromedriver": true, - "wikimedia/composer-merge-plugin": true - }, - "preferred-install": { - "drupal/core": "dist" - }, - "process-timeout": 0, - "sort-packages": true - }, - "extra": { - "drupal-scaffold": { - "allowed-packages": [ - "drupal/core" - ], - "file-mapping": { - "[project-root]/.editorconfig": false, - "[project-root]/.gitattributes": false, - "[web-root]/.csslintrc": false, - "[web-root]/INSTALL.txt": false, - "[web-root]/drush/drush.yml": "drush/drush.yml", - "[web-root]/example.gitignore": false, - "[web-root]/modules/README.txt": false, - "[web-root]/profiles/README.txt": false, - "[web-root]/robots.txt": false, - "[web-root]/sites/README.txt": false, - "[web-root]/sites/default/default.settings.php": { - "append": "./patches/d9-acms-settings.patch" - }, - "[web-root]/themes/README.txt": false, - "[web-root]/themes/contrib/cohesion-theme/templates/maintenance-page.html.twig": "./patches/maintenance-page.patch", - "[web-root]/web.config": false - }, - "locations": { - "project-root": ".", - "web-root": "./docroot" - } - }, - "enable-patching": true, - "installer-paths": { - "docroot/core": [ - "type:drupal-core" - ], - "docroot/libraries/{$name}": [ - "type:drupal-library", - "type:bower-asset", - "type:npm-asset", - "swagger-api/swagger-ui", - "nnnick/chartjs" - ], - "docroot/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "docroot/profiles/contrib/{$name}": [ - "type:drupal-profile" - ], - "docroot/themes/contrib/{$name}": [ - "type:drupal-theme" - ] - }, - "installer-types": [ - "bower-asset", - "npm-asset" - ], - "patchLevel": { - "drupal/core": "-p2" - }, - "patches": { - "drupal/core": { - "3328187 - PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in docroot/core/lib/Drupal/Core/Mail/Plugin/Mail/PhpMail.php on line 112": "https://git.drupalcode.org/project/drupal/-/merge_requests/3142.patch", - "Fix failing test for site studio due to missing file": "https://gist.githubusercontent.com/chandan-singh7929/978c8c3c8b6f1e2de23492e7e562c0c3/raw/f0e7770d94be862e5495ca25662a0a0d5672b785/bypass-library-version-core.patch" - }, - "drupal/decoupled_router": { - "3111456 - Unable to resolve path on node in other language than default": "https://www.drupal.org/files/issues/2022-11-30/decouple_router-3111456-resolve-language-issue-58.patch", - "3176615 - RouteNotFoundException when a jsonapi individual route is not available": "https://www.drupal.org/files/issues/2023-04-26/route-not-found-exception.patch" - }, - "mglaman/drupal-check": { - "Add custom rules to bypass check for buildForm": "https://github.com/mglaman/drupal-check/pull/286.patch" - } - } - }, - "autoload": { - "psr-4": { - "Acquia\\Utility\\": "src/Utility" - }, - "classmap": [ - "src/Composer/ConfigureProject.php" - ] - }, "repositories": { "chart.js": { "type": "package", "package": { "name": "nnnick/chartjs", - "version": "v3.9.1", "type": "drupal-library", + "version": "v3.9.1", "dist": { - "url": "https://github.com/chartjs/Chart.js/releases/download/v3.9.1/chart.js-3.9.1.tgz", - "type": "tar" + "type": "tar", + "url": "https://github.com/chartjs/Chart.js/releases/download/v3.9.1/chart.js-3.9.1.tgz" } } }, @@ -341,6 +241,106 @@ }, "minimum-stability": "dev", "prefer-stable": true, + "autoload": { + "psr-4": { + "Acquia\\Utility\\": "src/Utility" + }, + "classmap": [ + "src/Composer/ConfigureProject.php" + ] + }, + "config": { + "allow-plugins": { + "composer/installers": true, + "cweagans/composer-patches": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "drupal/core-composer-scaffold": true, + "ergebnis/composer-normalize": true, + "mnsami/composer-custom-directory-installer": true, + "oomphinc/composer-installers-extender": true, + "php-http/discovery": true, + "phpro/grumphp-shim": true, + "phpstan/extension-installer": true, + "webdriver-binary/binary-chromedriver": true, + "wikimedia/composer-merge-plugin": true + }, + "preferred-install": { + "drupal/core": "dist" + }, + "process-timeout": 0, + "sort-packages": true + }, + "extra": { + "drupal-scaffold": { + "allowed-packages": [ + "drupal/core" + ], + "file-mapping": { + "[project-root]/.editorconfig": false, + "[project-root]/.gitattributes": false, + "[web-root]/.csslintrc": false, + "[web-root]/INSTALL.txt": false, + "[web-root]/drush/drush.yml": "drush/drush.yml", + "[web-root]/example.gitignore": false, + "[web-root]/modules/README.txt": false, + "[web-root]/profiles/README.txt": false, + "[web-root]/robots.txt": false, + "[web-root]/sites/README.txt": false, + "[web-root]/sites/default/default.settings.php": { + "append": "./patches/d9-acms-settings.patch" + }, + "[web-root]/themes/README.txt": false, + "[web-root]/themes/contrib/cohesion-theme/templates/maintenance-page.html.twig": "./patches/maintenance-page.patch", + "[web-root]/web.config": false + }, + "locations": { + "project-root": ".", + "web-root": "./docroot" + } + }, + "enable-patching": true, + "installer-paths": { + "docroot/core": [ + "type:drupal-core" + ], + "docroot/libraries/{$name}": [ + "type:drupal-library", + "type:bower-asset", + "type:npm-asset", + "swagger-api/swagger-ui", + "nnnick/chartjs" + ], + "docroot/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "docroot/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "docroot/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "installer-types": [ + "bower-asset", + "npm-asset" + ], + "patchLevel": { + "drupal/core": "-p2" + }, + "patches": { + "drupal/core": { + "3328187 - PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in docroot/core/lib/Drupal/Core/Mail/Plugin/Mail/PhpMail.php on line 112": "https://git.drupalcode.org/project/drupal/-/merge_requests/3142.patch", + "Fix failing test for site studio due to missing file": "https://gist.githubusercontent.com/chandan-singh7929/978c8c3c8b6f1e2de23492e7e562c0c3/raw/f0e7770d94be862e5495ca25662a0a0d5672b785/bypass-library-version-core.patch" + }, + "drupal/decoupled_router": { + "3111456 - Unable to resolve path on node in other language than default": "https://www.drupal.org/files/issues/2022-11-30/decouple_router-3111456-resolve-language-issue-58.patch", + "3176615 - RouteNotFoundException when a jsonapi individual route is not available": "https://www.drupal.org/files/issues/2023-04-26/route-not-found-exception.patch" + }, + "mglaman/drupal-check": { + "Add custom rules to bypass check for buildForm": "https://github.com/mglaman/drupal-check/pull/286.patch" + } + } + }, "scripts": { "pre-update-cmd": [ "@putenv COMPOSER_MEMORY_LIMIT=2G" diff --git a/composer.lock b/composer.lock index 01c87e813..d1ee63754 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bcb167afab3437287feb912077d67f1f", + "content-hash": "6728293353fbe2f377fef0bdf0f9340e", "packages": [ { "name": "acquia/acquia-cms-starterkit", @@ -2385,7 +2385,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_article", - "reference": "fc2984e91102f9a98e63f2e69412f290da3c4d97" + "reference": "368e1cd231824db6c31d070728b56817e86201c6" }, "require": { "drupal/acquia_cms_person": "^1.5.7" @@ -2410,7 +2410,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_audio", - "reference": "2cb10d2f974ae787b8de56b5190ea864c5ce74db" + "reference": "7693fd5974833102c32922fcba20bb5739087007" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -2436,7 +2436,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_common", - "reference": "e7d3bfe1b5324d4a538fcd4a4733f9bb055d95da" + "reference": "d981733c3e8ea7fa7d6a31a69f7f2c1300ec541b" }, "require": { "acquia/drupal-environment-detector": "^1.5", @@ -2484,7 +2484,7 @@ "drupal/acquia_cms_site_studio": "<1.4", "drupal/acquia_cms_starter": "<1.3.3", "drupal/acquia_cms_toolbar": "<1.4", - "drupal/acquia_cms_tour": "2.0.* || <1.3.2", + "drupal/acquia_cms_tour": "<1.3.2 || ~2.0.0", "drupal/acquia_cms_video": "<1.4" }, "type": "drupal-module", @@ -2518,7 +2518,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_component", - "reference": "c822e518cbb8662eb3c64d73d7416ef4885c3f0e" + "reference": "9a3ca35882961e1045df4f65c5ba4a0c4207affc" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -2547,7 +2547,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_dam", - "reference": "fa70af46e49879c171ff555a6e89b4a0197db10b" + "reference": "6c3a2613d83f0044f91df7f09abf6b77c6ae1095" }, "require": { "drupal/acquia_cms_image": "^1.5.10", @@ -2584,7 +2584,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_document", - "reference": "d7c2441bfc15b07833efff174bf6f42164e1b4b8" + "reference": "d4ff4d0cd000a6b69d87a8285ba8e77695f20b7d" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1" @@ -2609,7 +2609,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_event", - "reference": "4c6f82d73fd884f4a4bd6f3fb26ee1492641c4f4" + "reference": "f9a450b500e94d8f71f7d51e7d88f5e37df389d1" }, "require": { "drupal/acquia_cms_place": "^1.5.7" @@ -2634,7 +2634,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_headless", - "reference": "0199d2b8c308596fab8c71506105c8a29f4e164d" + "reference": "9a399fc6c071261bfb4226484e065ad270fbc3b1" }, "require": { "drupal/acquia_cms_tour": "^2.1.8", @@ -2711,7 +2711,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_image", - "reference": "673477a3a45b649b096d8c2ab7f6d8f5bde94701" + "reference": "7f0bddb651ac185ce52c97c5191dc5d32833be7a" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -2745,7 +2745,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_page", - "reference": "e8bc0770b82eb48f55c476b049c916015e377203" + "reference": "4c295aa731fa6ee2a8ab4cf7d2c5cc8d665245b2" }, "require": { "drupal/acquia_cms_image": "^1.5.10" @@ -2770,7 +2770,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_person", - "reference": "a05e29f38727491485fca3941d4e126ba8836ed9" + "reference": "e3391b57006d3a6871e22161311feb534cf20756" }, "require": { "drupal/acquia_cms_place": "^1.5.7", @@ -2796,7 +2796,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_place", - "reference": "06852eb82c5af1821b6bf81ad4700d105773e489" + "reference": "f9c3c4f4f5625dd3a989c19345327e836467d937" }, "require": { "drupal/acquia_cms_image": "^1.5.10", @@ -2826,7 +2826,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_search", - "reference": "07ed7927636fadb0ed0ac6297bace7b6650e1706" + "reference": "4a4ab68088587db5bcfb95839ea62b31b280300f" }, "require": { "cweagans/composer-patches": "^1.7", @@ -2871,7 +2871,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_site_studio", - "reference": "9b6d76e27e132e5d8957b64d95806981d66ccfc4" + "reference": "38806e159815c1da87831a948e6584b79f1ee4ca" }, "require": { "acquia/cohesion": "~7.4.0", @@ -2925,7 +2925,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_starter", - "reference": "5a133e48071e42f13cc0838162944529920b16fd" + "reference": "113d36334e6f3d296badb8688e26e0d6bdaa3dc6" }, "require": { "drupal/acquia_cms_article": "^1.5.7", @@ -2962,7 +2962,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_toolbar", - "reference": "c4de71fd523568e2f6e80b65a6ec08848b1eb699" + "reference": "f91f1adf2713dc393af17a0a276fac942370da5b" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -2988,7 +2988,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_tour", - "reference": "23f5a28858a23e61fa8ae989d31a0764febd683e" + "reference": "174ab9370b4d4cbd36730c6bea541ddef983b007" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -3014,7 +3014,7 @@ "dist": { "type": "path", "url": "./modules/acquia_cms_video", - "reference": "62afadc678c0ed402124144981040a56b15f4bd7" + "reference": "2532213d18e7aba5922eaca5b99fa85d59464542" }, "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1" @@ -8171,7 +8171,7 @@ "dist": { "type": "path", "url": "./modules/sitestudio_config_management", - "reference": "7e3c72a2a58ab0893f8c4c6ead4a8af3a1d78849" + "reference": "4b82feb468b5f5d91df43f09fc8cc7c6972ba6f3" }, "require": { "acquia/cohesion": "~7.4.0", @@ -16891,41 +16891,40 @@ }, { "name": "ergebnis/composer-normalize", - "version": "2.15.0", + "version": "2.42.0", "source": { "type": "git", "url": "https://github.com/ergebnis/composer-normalize.git", - "reference": "d469a15b916441959446d52a0f5d3fc9f7720317" + "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/d469a15b916441959446d52a0f5d3fc9f7720317", - "reference": "d469a15b916441959446d52a0f5d3fc9f7720317", + "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/02cf2b69ad2a74c6f11a8c3f5f054b8f949df910", + "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1.0 || ^2.0.0", - "ergebnis/json-normalizer": "^1.0.3", - "ergebnis/json-printer": "^3.1.1", - "justinrainbow/json-schema": "^5.2.10", + "composer-plugin-api": "^2.0.0", + "ergebnis/json": "^1.2.0", + "ergebnis/json-normalizer": "^4.5.0", + "ergebnis/json-printer": "^3.5.0", + "ext-json": "*", + "justinrainbow/json-schema": "^5.2.12", "localheinz/diff": "^1.1.1", - "php": "^7.2 || ^8.0" + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" }, "require-dev": { - "composer/composer": "^1.10.22 || ^2.0.13", - "ergebnis/license": "^1.1.0", - "ergebnis/php-cs-fixer-config": "^2.14.0", - "ergebnis/phpstan-rules": "~0.15.3", - "ergebnis/test-util": "^1.5.0", - "phpstan/extension-installer": "^1.1.0", - "phpstan/phpstan": "~0.12.89", - "phpstan/phpstan-deprecation-rules": "~0.12.6", - "phpstan/phpstan-phpunit": "~0.12.19", - "phpstan/phpstan-strict-rules": "~0.12.9", - "phpunit/phpunit": "^8.5.16", - "psalm/plugin-phpunit": "~0.16.0", - "symfony/filesystem": "^5.3.0", - "vimeo/psalm": "^4.7.3" + "composer/composer": "^2.6.6", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.20.0", + "ergebnis/phpunit-slow-test-detector": "^2.9.0", + "fakerphp/faker": "^1.23.1", + "infection/infection": "~0.26.6", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "~0.18.4", + "rector/rector": "~0.19.2", + "symfony/filesystem": "^5.4.25", + "vimeo/psalm": "^5.20.0" }, "type": "composer-plugin", "extra": { @@ -16933,7 +16932,8 @@ "composer-normalize": { "indent-size": 2, "indent-style": "space" - } + }, + "plugin-optional": true }, "autoload": { "psr-4": { @@ -16947,7 +16947,8 @@ "authors": [ { "name": "Andreas Möller", - "email": "am@localheinz.com" + "email": "am@localheinz.com", + "homepage": "https://localheinz.com" } ], "description": "Provides a composer plugin for normalizing composer.json.", @@ -16960,51 +16961,114 @@ ], "support": { "issues": "https://github.com/ergebnis/composer-normalize/issues", + "security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/composer-normalize" }, - "funding": [ + "time": "2024-01-30T11:54:02+00:00" + }, + { + "name": "ergebnis/json", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/ergebnis/json.git", + "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ergebnis/json/zipball/a457f25a5ba7ea11fc94f84d53678c5211abfce0", + "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "ergebnis/data-provider": "^3.2.0", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.20.0", + "ergebnis/phpunit-slow-test-detector": "^2.9.0", + "fakerphp/faker": "^1.23.1", + "infection/infection": "~0.26.6", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "~0.18.4", + "rector/rector": "~0.19.2", + "vimeo/psalm": "^5.20.0" + }, + "type": "library", + "extra": { + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, + "autoload": { + "psr-4": { + "Ergebnis\\Json\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "url": "https://github.com/localheinz", - "type": "github" + "name": "Andreas Möller", + "email": "am@localheinz.com", + "homepage": "https://localheinz.com" } ], - "time": "2021-06-15T08:06:45+00:00" + "description": "Provides a Json value object for representing a valid JSON string.", + "homepage": "https://github.com/ergebnis/json", + "keywords": [ + "json" + ], + "support": { + "issues": "https://github.com/ergebnis/json/issues", + "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md", + "source": "https://github.com/ergebnis/json" + }, + "time": "2024-01-29T15:09:24+00:00" }, { "name": "ergebnis/json-normalizer", - "version": "1.0.3", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json-normalizer.git", - "reference": "4a7f064ce34d5a2e382564565cdd433dbc5b9494" + "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/4a7f064ce34d5a2e382564565cdd433dbc5b9494", - "reference": "4a7f064ce34d5a2e382564565cdd433dbc5b9494", + "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/f0ee9e70739f121b27fac8b743e4a52b23de2152", + "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152", "shasum": "" }, "require": { - "ergebnis/json-printer": "^3.1.1", + "ergebnis/json": "^1.2.0", + "ergebnis/json-pointer": "^3.4.0", + "ergebnis/json-printer": "^3.5.0", + "ergebnis/json-schema-validator": "^4.2.0", "ext-json": "*", - "justinrainbow/json-schema": "^5.2.10", - "php": "^7.2 || ^8.0" + "justinrainbow/json-schema": "^5.2.12", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" }, "require-dev": { - "ergebnis/license": "^1.1.0", - "ergebnis/php-cs-fixer-config": "^2.10.0", - "ergebnis/phpstan-rules": "~0.15.3", - "ergebnis/test-util": "^1.4.0", - "infection/infection": "~0.15.3", - "jangregor/phpstan-prophecy": "~0.8.1", - "phpstan/extension-installer": "^1.1.0", - "phpstan/phpstan": "~0.12.80", - "phpstan/phpstan-deprecation-rules": "~0.12.6", - "phpstan/phpstan-phpunit": "~0.12.17", - "phpstan/phpstan-strict-rules": "~0.12.9", - "phpunit/phpunit": "^8.5.14", - "psalm/plugin-phpunit": "~0.12.2", - "vimeo/psalm": "^3.18" + "composer/semver": "^3.4.0", + "ergebnis/data-provider": "^3.2.0", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.20.0", + "ergebnis/phpunit-slow-test-detector": "^2.9.0", + "fakerphp/faker": "^1.23.1", + "infection/infection": "~0.26.6", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "~0.18.4", + "rector/rector": "~0.19.4", + "vimeo/psalm": "^5.20.0" + }, + "suggest": { + "composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer" }, "type": "library", "autoload": { @@ -17019,7 +17083,8 @@ "authors": [ { "name": "Andreas Möller", - "email": "am@localheinz.com" + "email": "am@localheinz.com", + "homepage": "https://localheinz.com" } ], "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.", @@ -17030,15 +17095,76 @@ ], "support": { "issues": "https://github.com/ergebnis/json-normalizer/issues", + "security": "https://github.com/ergebnis/json-normalizer/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json-normalizer" }, - "funding": [ + "time": "2024-01-30T09:10:15+00:00" + }, + { + "name": "ergebnis/json-pointer", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/ergebnis/json-pointer.git", + "reference": "b654757d873050622c2166f55ab25d04685261c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/b654757d873050622c2166f55ab25d04685261c5", + "reference": "b654757d873050622c2166f55ab25d04685261c5", + "shasum": "" + }, + "require": { + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "ergebnis/data-provider": "^3.2.0", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.20.0", + "ergebnis/phpunit-slow-test-detector": "^2.9.0", + "fakerphp/faker": "^1.23.1", + "infection/infection": "~0.26.6", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "~0.18.4", + "rector/rector": "~0.19.2", + "vimeo/psalm": "^5.20.0" + }, + "type": "library", + "extra": { + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, + "autoload": { + "psr-4": { + "Ergebnis\\Json\\Pointer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "url": "https://github.com/localheinz", - "type": "github" + "name": "Andreas Möller", + "email": "am@localheinz.com", + "homepage": "https://localheinz.com" } ], - "time": "2021-03-06T13:33:57+00:00" + "description": "Provides an abstraction of a JSON pointer.", + "homepage": "https://github.com/ergebnis/json-pointer", + "keywords": [ + "RFC6901", + "json", + "pointer" + ], + "support": { + "issues": "https://github.com/ergebnis/json-pointer/issues", + "security": "https://github.com/ergebnis/json-pointer/blob/main/.github/SECURITY.md", + "source": "https://github.com/ergebnis/json-pointer" + }, + "time": "2024-01-29T16:37:15+00:00" }, { "name": "ergebnis/json-printer", @@ -17102,6 +17228,76 @@ }, "time": "2024-01-29T15:33:37+00:00" }, + { + "name": "ergebnis/json-schema-validator", + "version": "4.2.0", + "source": { + "type": "git", + "url": "https://github.com/ergebnis/json-schema-validator.git", + "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef", + "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef", + "shasum": "" + }, + "require": { + "ergebnis/json": "^1.2.0", + "ergebnis/json-pointer": "^3.4.0", + "ext-json": "*", + "justinrainbow/json-schema": "^5.2.12", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "ergebnis/data-provider": "^3.2.0", + "ergebnis/license": "^2.4.0", + "ergebnis/php-cs-fixer-config": "^6.20.0", + "ergebnis/phpunit-slow-test-detector": "^2.9.0", + "fakerphp/faker": "^1.23.1", + "infection/infection": "~0.26.6", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "~0.18.4", + "rector/rector": "~0.19.2", + "vimeo/psalm": "^5.20.0" + }, + "type": "library", + "extra": { + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, + "autoload": { + "psr-4": { + "Ergebnis\\Json\\SchemaValidator\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com", + "homepage": "https://localheinz.com" + } + ], + "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.", + "homepage": "https://github.com/ergebnis/json-schema-validator", + "keywords": [ + "json", + "schema", + "validator" + ], + "support": { + "issues": "https://github.com/ergebnis/json-schema-validator/issues", + "security": "https://github.com/ergebnis/json-schema-validator/blob/main/.github/SECURITY.md", + "source": "https://github.com/ergebnis/json-schema-validator" + }, + "time": "2024-01-29T16:50:15+00:00" + }, { "name": "friendsoftwig/twigcs", "version": "6.4.0", diff --git a/modules/acquia_cms_article/composer.json b/modules/acquia_cms_article/composer.json index a8dd9fc08..b70c1547d 100644 --- a/modules/acquia_cms_article/composer.json +++ b/modules/acquia_cms_article/composer.json @@ -1,11 +1,17 @@ { "name": "drupal/acquia_cms_article", - "type": "drupal-module", "description": "Provides an Article content type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_person": "^1.5.7" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -22,11 +28,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - } } } diff --git a/modules/acquia_cms_audio/composer.json b/modules/acquia_cms_audio/composer.json index d26c32075..80105f5a8 100644 --- a/modules/acquia_cms_audio/composer.json +++ b/modules/acquia_cms_audio/composer.json @@ -1,12 +1,22 @@ { "name": "drupal/acquia_cms_audio", - "type": "drupal-module", "description": "Provides an Audio media type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", "drupal/media_entity_soundcloud": "^3.1" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -23,15 +33,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_common/composer.json b/modules/acquia_cms_common/composer.json index 6acf6d759..575f2acd9 100644 --- a/modules/acquia_cms_common/composer.json +++ b/modules/acquia_cms_common/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_common", - "type": "drupal-module", "description": "Handles shared functionality for Acquia CMS.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "acquia/drupal-environment-detector": "^1.5", "acquia/memcache-settings": "^1.2", @@ -49,9 +49,20 @@ "drupal/acquia_cms_site_studio": "<1.4", "drupal/acquia_cms_starter": "<1.3.3", "drupal/acquia_cms_toolbar": "<1.4", - "drupal/acquia_cms_tour": "2.0.* || <1.3.2", + "drupal/acquia_cms_tour": "<1.3.2 || ~2.0.0", "drupal/acquia_cms_video": "<1.4" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, + "minimum-stability": "alpha", "config": { "allow-plugins": { "composer/installers": true, @@ -79,16 +90,5 @@ "3301692 - Passing null to parameter to mb_strtolower() is deprecated with PHP 8.1": "https://git.drupalcode.org/project/drupal/-/merge_requests/2598.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } - }, - "minimum-stability": "alpha" + } } diff --git a/modules/acquia_cms_component/composer.json b/modules/acquia_cms_component/composer.json index ad99010dd..60e590731 100644 --- a/modules/acquia_cms_component/composer.json +++ b/modules/acquia_cms_component/composer.json @@ -1,13 +1,23 @@ { "name": "drupal/acquia_cms_component", - "type": "drupal-module", "description": "Provides component and related configuration for Acquia CMS.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", "drupal/component": "^1.0", "drupal/jsonapi_extras": "^3.24" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -26,15 +36,5 @@ }, "enable-patching": true, "patches": {} - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_dam/composer.json b/modules/acquia_cms_dam/composer.json index adae473c2..317671bfc 100644 --- a/modules/acquia_cms_dam/composer.json +++ b/modules/acquia_cms_dam/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_dam", - "type": "drupal-module", "description": "Provides an Acquia DAM related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_image": "^1.5.10", "drupal/acquia_cms_video": "^1.5.8", @@ -18,6 +18,16 @@ "drupal/acquia_cms_site_studio": "<1.5", "drupal/acquia_cms_video": "<1.5" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -34,15 +44,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_document/composer.json b/modules/acquia_cms_document/composer.json index 32d6be852..fcb3f4de2 100644 --- a/modules/acquia_cms_document/composer.json +++ b/modules/acquia_cms_document/composer.json @@ -1,11 +1,17 @@ { "name": "drupal/acquia_cms_document", - "type": "drupal-module", "description": "Provides a Document media type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -22,11 +28,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - } } } diff --git a/modules/acquia_cms_event/composer.json b/modules/acquia_cms_event/composer.json index 5d97e89ea..2b5a947fd 100644 --- a/modules/acquia_cms_event/composer.json +++ b/modules/acquia_cms_event/composer.json @@ -1,11 +1,17 @@ { "name": "drupal/acquia_cms_event", - "type": "drupal-module", "description": "Provides an Event content type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_place": "^1.5.7" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -22,11 +28,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - } } } diff --git a/modules/acquia_cms_headless/composer.json b/modules/acquia_cms_headless/composer.json index 3c3c9a313..ab4e9ff4f 100644 --- a/modules/acquia_cms_headless/composer.json +++ b/modules/acquia_cms_headless/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_headless", - "type": "drupal-module", "description": "Provides a Headless/Decoupled functionality for Acquia CMS.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_tour": "^2.1.8", "drupal/jsonapi_extras": "^3.24", @@ -18,6 +18,16 @@ "drupal/decoupled_router": "<2.0.4", "drupal/subrequests": "<3.0.7" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -74,15 +84,5 @@ "3049395 - Page Cache causes different subrequests to return the same responses": "https://www.drupal.org/files/issues/2019-07-18/change_request_type-63049395-09.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_image/composer.json b/modules/acquia_cms_image/composer.json index e81df4b37..1f3b0f321 100644 --- a/modules/acquia_cms_image/composer.json +++ b/modules/acquia_cms_image/composer.json @@ -1,14 +1,24 @@ { "name": "drupal/acquia_cms_image", - "type": "drupal-module", "description": "Provides an Image media type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", "drupal/focal_point": "^2.0@alpha", "drupal/imagemagick": "^3.4", "drupal/imce": "^2.2 || ^3.0" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -31,15 +41,5 @@ "3162210 - Preview link accidentally closes the media library": "https://www.drupal.org/files/issues/2020-10-06/3162210-17.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_page/composer.json b/modules/acquia_cms_page/composer.json index 56d2448ba..6e070d35c 100644 --- a/modules/acquia_cms_page/composer.json +++ b/modules/acquia_cms_page/composer.json @@ -1,11 +1,17 @@ { "name": "drupal/acquia_cms_page", - "type": "drupal-module", "description": "Provides an unstructured Page content type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_image": "^1.5.10" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -22,11 +28,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - } } } diff --git a/modules/acquia_cms_person/composer.json b/modules/acquia_cms_person/composer.json index f44d244a1..2769a1958 100644 --- a/modules/acquia_cms_person/composer.json +++ b/modules/acquia_cms_person/composer.json @@ -1,12 +1,22 @@ { "name": "drupal/acquia_cms_person", - "type": "drupal-module", "description": "Provides a Person content type, a structured data representation of people associated with a website or organization.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_place": "^1.5.7", "drupal/scheduler": "^2.0" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -23,15 +33,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_place/composer.json b/modules/acquia_cms_place/composer.json index 8d27dc712..8e4474207 100644 --- a/modules/acquia_cms_place/composer.json +++ b/modules/acquia_cms_place/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_place", - "type": "drupal-module", "description": "Provides a Place content type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_image": "^1.5.10", "drupal/address": "^1.11 || ^2.0", @@ -11,6 +11,17 @@ "drupal/scheduler": "^2.0", "geocoder-php/google-maps-provider": "^4.7" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, + "minimum-stability": "RC", "config": { "allow-plugins": { "composer/installers": true, @@ -27,16 +38,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } - }, - "minimum-stability": "RC" + } } diff --git a/modules/acquia_cms_search/composer.json b/modules/acquia_cms_search/composer.json index 597e656f1..8ad3dcb2d 100644 --- a/modules/acquia_cms_search/composer.json +++ b/modules/acquia_cms_search/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_search", - "type": "drupal-module", "description": "Provides powerful search capabilities to the site.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "cweagans/composer-patches": "^1.7", "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", @@ -13,6 +13,16 @@ "drupal/search_api": "1.30 || 1.31", "drupal/search_api_autocomplete": "^1.7" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -42,15 +52,5 @@ "3151796 - Problems when executing Search API tasks during install, updates": "https://www.drupal.org/files/issues/2022-11-04/search_api-3151796-division-by-zero-error-7.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_site_studio/composer.json b/modules/acquia_cms_site_studio/composer.json index 133ff5d84..9febae235 100644 --- a/modules/acquia_cms_site_studio/composer.json +++ b/modules/acquia_cms_site_studio/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_site_studio", - "type": "drupal-module", "description": "Handles code for Site Studio Installation & Related Configurations.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "acquia/cohesion": "~7.4.0", "acquia/cohesion-theme": "~7.4.0", @@ -24,6 +24,17 @@ "drupal/acquia_cms_search": "<1.5", "drupal/acquia_cms_video": "<1.6" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, + "minimum-stability": "RC", "config": { "allow-plugins": { "composer/installers": true, @@ -51,16 +62,5 @@ "3340269 - Site Studio: Allow optional packages to import": "https://www.drupal.org/files/issues/2023-03-16/3340269-site-studio-allow-optional-packages-6.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } - }, - "minimum-stability": "RC" + } } diff --git a/modules/acquia_cms_starter/composer.json b/modules/acquia_cms_starter/composer.json index 2230cffab..ffade5c12 100644 --- a/modules/acquia_cms_starter/composer.json +++ b/modules/acquia_cms_starter/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_starter", - "type": "drupal-module", "description": "Contains the example content for demonstration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_article": "^1.5.7", "drupal/acquia_cms_document": "^1.4.6", @@ -12,6 +12,17 @@ "drupal/acquia_cms_video": "^1.5.8", "drupal/default_content": "^2.0" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, + "minimum-stability": "alpha", "config": { "allow-plugins": { "composer/installers": true, @@ -34,16 +45,5 @@ "2698425 - Duplicate content issues in default content": "https://git.drupalcode.org/project/default_content/-/merge_requests/5.patch" } } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } - }, - "minimum-stability": "alpha" + } } diff --git a/modules/acquia_cms_toolbar/composer.json b/modules/acquia_cms_toolbar/composer.json index 7876407e9..1b63f489f 100644 --- a/modules/acquia_cms_toolbar/composer.json +++ b/modules/acquia_cms_toolbar/composer.json @@ -1,12 +1,22 @@ { "name": "drupal/acquia_cms_toolbar", - "type": "drupal-module", "description": "Acquia CMS styling brought to admin toolbar.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", "drupal/admin_toolbar": "^3.3" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -23,15 +33,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } } } diff --git a/modules/acquia_cms_tour/composer.json b/modules/acquia_cms_tour/composer.json index b3d6fd6a5..ddc4d26ef 100644 --- a/modules/acquia_cms_tour/composer.json +++ b/modules/acquia_cms_tour/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/acquia_cms_tour", - "type": "drupal-module", "description": "Provides a tour page for Acquia CMS.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1", "drupal/checklistapi": "^2.1" diff --git a/modules/acquia_cms_video/composer.json b/modules/acquia_cms_video/composer.json index 7e6843399..a3d9da69f 100644 --- a/modules/acquia_cms_video/composer.json +++ b/modules/acquia_cms_video/composer.json @@ -1,11 +1,17 @@ { "name": "drupal/acquia_cms_video", - "type": "drupal-module", "description": "Provides a Video media type and related configuration.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "drupal/acquia_cms_common": "^1.9 || ^2.1 || ^3.1" }, + "repositories": { + "assets": { + "type": "composer", + "url": "https://asset-packagist.org" + } + }, "config": { "allow-plugins": { "composer/installers": true, @@ -22,11 +28,5 @@ "branch-alias": { "dev-develop": "1.x-dev" } - }, - "repositories": { - "assets": { - "type": "composer", - "url": "https://asset-packagist.org" - } } } diff --git a/modules/sitestudio_config_management/composer.json b/modules/sitestudio_config_management/composer.json index 680791275..f2f9ef282 100644 --- a/modules/sitestudio_config_management/composer.json +++ b/modules/sitestudio_config_management/composer.json @@ -1,8 +1,8 @@ { "name": "drupal/sitestudio_config_management", - "type": "drupal-module", "description": "Contains configuration for config filter, config ignore & config split.", "license": "GPL-2.0-or-later", + "type": "drupal-module", "require": { "php": ">=7.4", "acquia/cohesion": "~7.4.0",