Files
edlp_d8/composer.json
T
2019-12-02 15:52:03 +01:00

145 lines
4.9 KiB
JSON

{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/addtoany": "1.12.0",
"drupal/admin_toolbar": "^2.0",
"drupal/adminimal_theme": "^1.4",
"drupal/audiofield": "1.9",
"drupal/autologout": "1.0.0",
"drupal/basic": "1.3.0",
"drupal/better_messages": "1.0.0-alpha2",
"drupal/bulkdelete": "1.x-dev",
"drupal/color_field": "2.0.0",
"drupal/config_devel": "^1.4",
"drupal/config_ignore": "2.1.0",
"drupal/console": "^1.0.2",
"drupal/context": "4.0.0-beta2",
"drupal/core": "^8.7.0",
"drupal/ctools": "3.2.0",
"drupal/date_range_formatter": "3.1.0",
"drupal/devel": "2.1",
"drupal/domain": "^1.0",
"drupal/domain_menu_access": "1.x-dev",
"drupal/domain_site_settings": "1.3.0",
"drupal/email_registration": "^1.0",
"drupal/entity": "^1.0",
"drupal/features": "3.8.0",
"drupal/field_group": "^3.0",
"drupal/filefield_sources": "1.x-dev",
"drupal/filter_perms": "1.x-dev",
"drupal/honeypot": "1.29.0",
"drupal/linkit": "^5.0",
"drupal/login_emailusername": "^1.1",
"drupal/maillog": "1.x-dev",
"drupal/matomo": "1.9.0",
"drupal/menu_admin_per_menu": "1.0.0",
"drupal/metatag": "^1.10",
"drupal/migrate_tools": "^4.1",
"drupal/path_alias_xt": "1.x-dev",
"drupal/pathauto": "1.5",
"drupal/piwik": "^1.4",
"drupal/profile": "^1.0",
"drupal/redirect": "^1.3",
"drupal/redis": "^1.1",
"drupal/restui": "^1.17",
"drupal/search_api": "^1.12",
"drupal/simple_sitemap": "^3.1",
"drupal/synonyms": "1.x-dev",
"drupal/toolbar_themes": "1.x-dev",
"drupal/translation_views": "^1.0",
"drupal/url_to_video_filter": "1.3.0",
"drupal/views_bulk_edit": "^2.2",
"drupal/workflow": "1.x-dev",
"drush/drush": "^9.0.0",
"oomphinc/composer-installers-extender": "^1.1",
"vlucas/phpdotenv": "^2.4",
"webflo/drupal-core-require-dev": "^8.7.0",
"webflo/drupal-core-strict": "^8.0",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev": {
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": ["load.environment.php"]
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"patches": {
"drupal/domain_site_settings": {
"Circular Error or Conflict with Language_Manager" : "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
},
"drupal/login_emailusername": {
"rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801" : "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
}
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
}
}
}