Commit 334a665b authored by Tasneem Natshah's avatar Tasneem Natshah
Browse files

Issue #3278137 by Tasneem Natshah: Add the Dashboards with Layout Builder...

Issue #3278137 by Tasneem Natshah: Add the Dashboards with Layout Builder module and configure the default Cucumber Dashboards
parent f96a2841
Loading
Loading
Loading
Loading

config/CHANGELOG.md

0 → 100644
+14 −0
Original line number Diff line number Diff line
# 9.0.0-alpha2

* Issue [#3183878](https://www.drupal.org/i/3183878):
         Fixed Cucumber composer and .info.yml to work with Drupal 9 ( ^9.0 )
         only. To work with Composer 2.0 , PHP7.4, and MySQL 8

# 9.0.0-alpha1

* Issue [#3118432](https://www.drupal.org/i/3118432):
        Started a 9.0.x branch for Cucumber and Cucumber Project to integrate
        with Drupal 9 with Drupal coding standard and practice
* Issue [#3138444](https://www.drupal.org/i/3138444):
        Added [Vartheme Claro] administration theme and use it as the
        default back-end theme

config/README.md

0 → 100755
+19 −0
Original line number Diff line number Diff line
[![CircleCI](https://circleci.com/gh/webship/cucumber/tree/9.0.x.svg?style=svg)](https://circleci.com/gh/webship/cucumber/tree/9.0.x) Cucumber 9.0.x

# Cucumber
Cucumber Management System

[![Cucumber](https://www.drupal.org/files/project-images/drupal-cucumber.png)](https://www.drupal.org/project/cucumber)

## Usage

First you need to [install composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx).

> Note: The instructions below refer to the [global composer installation](https://getcomposer.org/doc/00-intro.md#globally).
You might need to replace `composer` with `php composer.phar` (or similar) 
for your setup.

To install the dev version of Cucumber 9.0.x run this command:
```
composer create-project webship/cucumber-project:9.0.x-dev WEBSITE_NAME --stability dev --no-interaction
```
 No newline at end of file

config/composer.json

0 → 100755
+91 −0
Original line number Diff line number Diff line
{
  "name": "webship/cucumber",
  "description": "Cucumber Management System",
  "type": "drupal-profile",
  "license": "GPL-2.0-or-later",
  "minimum-stability": "dev",
  "prefer-stable": true,
  "authors": [
    {
      "name": "Vardot",
      "homepage": "https://www.drupal.org/vardot",
      "role": "Initial building, ongoing maintenance and development"
    },
    {
      "name": "Webship",
      "homepage": "https://www.drupal.org/webship",
      "role": "Volunteer contributions"
    }
  ],
  "support": {
    "issues": "http://drupal.org/project/issues/cucumber",
    "source": "http://cgit.drupalcode.org/cucumber"
  },
  "repositories": {
    "drupal": {
      "type": "composer",
      "url": "https://packages.drupal.org/8"
    },
    "assets": {
      "type": "composer",
      "url": "https://asset-packagist.org"
    }
  },
  "require": {
    "composer/installers": "~1.0 || ~2.0",
    "oomphinc/composer-installers-extender": "~1.0 || ~2.0",
    "drupal/core-composer-scaffold": "~9.0",
    "drupal/core-project-message": "~9.0",
    "cweagans/composer-patches": "~1.0",
    "drupal/core": "~9.0",
    "drupal/webdev": "~9.0",
    "drupal/webadmin": "~9.0",
    "drupal/gin": "~3.0",
    "drupal/gin_toolbar": "~1.0",
    "drupal/gin_login": "~1.2",
    "drupal/gin_lb": "~1.0",
    "drupal/dashboards": "~2.0",
    "drupal/anonymous_redirect": "~2.0",
    "drupal/user_redirect": "~2.0",
    "drush/drush": "~11.0"
  },
  "conflict": {
    "drupal/drupal": "*"
  },
  "config": {
    "bin-dir": "bin/",
    "secure-http": false,
    "optimize-autoloader": true,
    "preferred-install": {
      "drupal/core": "dist"
    },
    "allow-plugins": {
      "composer/installers": true,
      "cweagans/composer-patches": true,
      "oomphinc/composer-installers-extender": true,
      "drupal/core-composer-scaffold": true
    }
  },
  "extra": {
    "drupal-scaffold": {
      "locations": {
        "web-root": "web/"
      }
    },
    "installer-paths": {
      "web/core": ["type:drupal-core"],
      "web/profiles/contrib/{$name}": ["type:drupal-profile"],
      "web/modules/contrib/{$name}": ["type:drupal-module"],
      "web/themes/contrib/{$name}": ["type:drupal-theme"],
      "web/libraries/{$name}": ["type:drupal-library"],
      "web/modules/custom/{$name}": ["type:drupal-custom-module"],
      "web/themes/custom/{$name}": ["type:drupal-custom-theme"],
      "drush/contrib/{$name}": ["type:drupal-drush"]
    },
    "enable-patching": true,
    "composer-exit-on-patch-failure": true,
    "patchLevel": {
      "drupal/core": "-p2"
    }
  }
}
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
enable_redirect: true
redirect_url: /user/login
redirect_url_overrides: ''
+24 −0
Original line number Diff line number Diff line
uuid: 9fb5c897-396f-46cc-a6e2-c7d989a3f8d3
langcode: en
status: true
dependencies:
  config:
    - node.type.project
_core:
  default_config_hash: K3bWVHLNADH5mgSR2UhHJ8CQK4LkTALoKLyeCpFXfps
id: node.project.promote
field_name: promote
entity_type: node
bundle: project
label: 'Promoted to front page'
description: ''
required: false
translatable: true
default_value:
  -
    value: 0
default_value_callback: ''
settings:
  on_label: 'On'
  off_label: 'Off'
field_type: boolean
Loading