Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
74 changes: 38 additions & 36 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,50 +16,49 @@
}
],
"require": {
"php": "^8.0",
"php": "*",
"ext-json": "*",
"ext-zip": "*",
"alchemy/zippy": "dev-master",
"amazeeio/drupal_integrations": "^0.3.7",
"alchemy/zippy": "v0.5.x-dev",
"amazeeio/drupal_integrations": "^0.5.0",
"cweagans/composer-patches": "^1.7",
"drupal/address": "^1.11",
"drupal/admin_toolbar": "^3.1",
"drupal/components": "^2.4",
"drupal/console": "^1.9",
"drupal/core": "^9.5",
"drupal/core-composer-scaffold": "^9.5",
"drupal/core-recommended": "^9.5",
"drupal/address": "^1.12",
"drupal/admin_toolbar": "^3.6",
"drupal/components": "^3.0",
"drupal/core": "^10.0",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-recommended": "^10.0",
"drupal/entity_usage": "^2.0@beta",
"drupal/environment_indicator": "^4.0",
"drupal/gin": "^3.0@beta",
"drupal/git_deploy": "^2.4",
"drupal/graphql": "<4.0",
"drupal/graphql_twig": "1.x-dev@dev",
"drupal/gin": "^3.1",
"drupal/git_deploy": "^2.6",
"drupal/graphql": "^3.0",
"drupal/graphql_twig": "^3.0",
"drupal/honeypot": "^2.1",
"drupal/lagoon_logs": "^2.0",
"drupal/linkit": "6.0.x-dev@dev",
"drupal/menu_item_extras": "^2.17",
"drupal/metatag": "^1.21",
"drupal/paragraphs": "^1.14",
"drupal/pathauto": "^1.11",
"drupal/purge": "^3.2",
"drupal/redirect": "^1.7",
"drupal/search_api": "^1.25",
"drupal/lagoon_logs": "^2.1",
"drupal/linkit": "^6.0",
"drupal/menu_item_extras": "^3.0",
"drupal/metatag": "^2.1",
"drupal/paragraphs": "^1.17",
"drupal/pathauto": "^1.13",
"drupal/purge": "^3.6",
"drupal/redirect": "^1.11",
"drupal/search_api": "^1.30",
"drupal/simple_sitemap": "^4.1",
"drupal/tmgmt": "^1.14",
"drupal/token": "^1.11",
"drupal/varnish_purge": "^2.1",
"drupal/video_embed_field": "^2.4",
"drupal/webform": "^6.1",
"drush/drush": "^11.1",
"vlucas/phpdotenv": "^5.4",
"wikimedia/composer-merge-plugin": "^2.0"
"drupal/tmgmt": "^1.15",
"drupal/token": "^1.15",
"drupal/varnish_purge": "^2.3",
"drupal/video_embed_field": "^2.5",
"drupal/webform": "^6.2",
"drush/drush": "^13.0",
"vlucas/phpdotenv": "^5.6",
"wikimedia/composer-merge-plugin": "^2.1"
},
"require-dev": {
"drupal/core-dev": "^9.0.0",
"phpunit/phpunit": "^8.4",
"sebastian/comparator": "^3.0",
"sebastian/diff": "^3.0"
"drupal/core-dev": "^10.0",
"phpunit/phpunit": "^9.6",
"sebastian/comparator": "^4.0",
"sebastian/diff": "^4.0"
},
"conflict": {
"drupal/drupal": "*"
Expand All @@ -74,7 +73,10 @@
"drupal/core-composer-scaffold": true,
"wikimedia/composer-merge-plugin": true,
"drupal/console-extend-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
}
},
"autoload": {
Expand Down
Loading