Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-core / config / chain / develop-contribute.yml
1 # How to use
2 # develop:contribute --drupal=/path/to/drupal-directory --code=/path/to/code-directory
3 command:
4   name: develop:contribute
5   description: 'Download Drupal + Drupal Console to contribute.'
6 vars:
7   repository: drupal-composer/drupal-project:8.x-dev
8 commands:
9   - command: exec
10     arguments:
11       bin: composer create-project {{repository}} {{drupal}} --prefer-dist --no-progress --no-interaction --no-install
12   - command: exec
13     arguments:
14       bin: composer require drupal/console-develop --dev --working-dir={{drupal}} --no-update
15   - command: exec
16     arguments:
17       bin: composer install --working-dir={{drupal}}
18   - command: exec
19     arguments:
20       bin: drupal site:install standard --root={{drupal}} --db-type="sqlite" --no-interaction
21   - command: exec
22     arguments:
23       bin: drupal develop:create:symlinks --code-directory={{code}} --root={{drupal}}