There was a problem fetching the pipeline summary.
Initial code borrowed from https://github.com/drupal-composer/drupal-project
parent
fc345e78
No related branches found
No related tags found
Pipeline #
Showing
- .gitignore 19 additions, 0 deletions.gitignore
- .gitlab-ci.yml 5 additions, 0 deletions.gitlab-ci.yml
- composer.json 99 additions, 0 deletionscomposer.json
- config/default/live/.htaccess 23 additions, 0 deletionsconfig/default/live/.htaccess
- config/default/staging/.htaccess 23 additions, 0 deletionsconfig/default/staging/.htaccess
- config/default/sync/.htaccess 23 additions, 0 deletionsconfig/default/sync/.htaccess
- drush/README.md 1 addition, 0 deletionsdrush/README.md
- drush/policy.drush.inc 39 additions, 0 deletionsdrush/policy.drush.inc
- scripts/composer/ScriptHandler.php 60 additions, 0 deletionsscripts/composer/ScriptHandler.php
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "drupal/d8-project", | ||
"description": "Drupal 8 template for a composer based deployment workflow", | ||
"type": "project", | ||
"license": "GPL-2.0+", | ||
"authors": [ | ||
{ | ||
"name": "Jürgen Haas", | ||
"role": "Drupal Expert" | ||
}, | ||
{ | ||
"name": "Richard Papp", | ||
"role": "Drupal Expert" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://packages.drupal.org/8" | ||
} | ||
], | ||
"require": { | ||
"composer/installers": "^1.0.20", | ||
"drupal-composer/drupal-scaffold": "^2.0.1", | ||
"cweagans/composer-patches": "~1.0", | ||
"drupal/core": "8.1.2", | ||
"drush/drush": "~8.0", | ||
"drupal/console": "~0.10", | ||
"drupal/address": "1.0-beta3", | ||
"drupal/admin_toolbar": "1.15", | ||
"drupal/browser_refresh": "1.0", | ||
"drupal/coffee": "1.0-beta1", | ||
"drupal/ctools": "3.0-alpha26", | ||
"drupal/entity": "1.0-alpha3", | ||
"drupal/node_view_permissions": "1.0", | ||
"drupal/pathauto": "1.0-alpha3", | ||
"drupal/piwik": "1.0", | ||
"drupal/rules": "3.0-alpha1", | ||
"drupal/smtp": "1.0-alpha0", | ||
"drupal/video": "1.2", | ||
"drupal/videojs": "1.0", | ||
"drupal/metatag": "1.0.x-dev", | ||
"drupal/slack": "1.0.x-dev", | ||
"drupal/honeypot": "1.23", | ||
"drupal/maillog": "1.0.x-dev" | ||
}, | ||
"require-dev": { | ||
"behat/mink": "~1.7", | ||
"behat/mink-goutte-driver": "~1.2", | ||
"jcalderonzumba/gastonjs": "~1.0.2", | ||
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1", | ||
"mikey179/vfsStream": "~1.2", | ||
"phpunit/phpunit": "~4.8", | ||
"symfony/css-selector": "~2.8" | ||
}, | ||
"conflict": { | ||
"drupal/drupal": "*" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"classmap": [ | ||
"scripts/composer/ScriptHandler.php" | ||
] | ||
}, | ||
"scripts": { | ||
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", | ||
"post-install-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | ||
], | ||
"post-update-cmd": [ | ||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | ||
] | ||
}, | ||
"extra": { | ||
"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" | ||
], | ||
"drush/contrib/{$name}": [ | ||
"type:drupal-drush" | ||
] | ||
}, | ||
"patches": { | ||
"drupal/node_view_permissions": { | ||
"Replace String with SafeMarkup class": "https://www.drupal.org/files/issues/node-view-permissions-php7-support-2683175-2.patch" | ||
} | ||
} | ||
} | ||
} |
config/default/live/.htaccess
0 → 100644
config/default/staging/.htaccess
0 → 100644
config/default/sync/.htaccess
0 → 100644
drush/README.md
0 → 100644
drush/policy.drush.inc
0 → 100644
scripts/composer/ScriptHandler.php
0 → 100644
Please register or sign in to comment