Skip to content
Snippets Groups Projects
composer.json 5.26 KiB
Newer Older
  • Learn to ignore specific revisions
  •     "name": "lakedrops/d8-project",
    
    jurgenhaas's avatar
    jurgenhaas committed
        "description": "Drupal 8 project template for a composer based workflow",
    
        "type": "project",
        "keywords": [
            "Drupal",
            "Development",
            "Install",
            "Update"
        ],
    
        "license": "GPL-2.0-or-later",
    
        "authors": [
            {
                "name": "Jürgen Haas",
                "email": "juergen@paragon-es.de",
                "homepage": "https://www.paragon-es.de",
                "role": "Drupal Expert"
            },
            {
                "name": "Richard Papp",
                "email": "richard.papp@boromino.com",
                "homepage": "http://www.boromino.com",
                "role": "Drupal Expert"
    
        ],
        "support": {
    
    jurgenhaas's avatar
    jurgenhaas committed
            "issues": "https://gitlab.lakedrops.com/composer/project/drupal-8/issues",
            "source": "https://gitlab.lakedrops.com/composer/project/drupal-8/tree/master"
    
        "repositories": [
            {
                "type": "composer",
                "url": "https://packages.drupal.org/8"
            },
            {
                "type": "composer",
                "url": "https://asset-packagist.org"
            },
            {
                "type": "package",
                "package": {
    
                    "name": "harvesthq/chosen",
                    "version": "1.8.2",
    
                    "type": "drupal-library",
                    "dist": {
    
                    }
                }
            },
            {
                "type": "package",
                "package": {
    
                    "name": "ckeditorplugin/codesnippet",
    
                    "type": "drupal-library",
    
                    "version": "master",
    
                    "dist": {
    
        "conflict": {
            "drupal/drupal": "*"
    
        "minimum-stability": "dev",
        "prefer-stable": true,
        "config": {
            "preferred-install": {
                "*": "dist"
    
            "sort-packages": true,
    
            "discard-changes": true
    
        },
        "extra": {
            "drupal-scaffold": {
                "excludes": [
                    "sites/default/default.settings.php",
                    "sites/default/default.services.yml",
                    "sites/development.services.yml",
                    "sites/example.settings.local.php",
                    "sites/example.sites.php"
                ]
            },
            "installer-paths": {
                "web/core": [
                    "type:drupal-core"
                ],
                "web/modules/contrib/{$name}": [
                    "type:drupal-module"
                ],
                "web/profiles/contrib/{$name}": [
                    "type:drupal-profile"
                ],
                "web/themes/contrib/{$name}": [
                    "type:drupal-theme"
                ],
                "web/themes/custom/{$name}": [
                    "type:drupal-custom-theme"
                ],
                "web/libraries/{$name}": [
                    "type:drupal-library"
                ],
                "drush/contrib/{$name}": [
                    "type:drupal-drush"
                ]
    
            "patches": {
                "drupal/smart_login": {
                    "Error 403 redirect": "https://www.drupal.org/files/issues/this_is_silently-2831386-2.patch"
                },
                "drupal/social_profile_field": {
                    "Langparam": "https://www.drupal.org/files/issues/social_profile_field-fix-warnings-in-formatter-1.patch",
                    "Redundant icons": "https://www.drupal.org/files/issues/more_effective_handling-2799887-2.patch",
                    "Alter icon path": "https://www.drupal.org/files/issues/allow_for_different-2799907-2.patch"
                }