Add Drupal application
This commit is contained in:
parent
c00b769d67
commit
4bb39011f3
261 changed files with 22997 additions and 0 deletions
88
drupal/composer.json
Normal file
88
drupal/composer.json
Normal file
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"name": "opdavies/blue-conf-2019-drupal",
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"composer/installers": "^1.2",
|
||||
"cweagans/composer-patches": "^1.6.5",
|
||||
"drupal-composer/drupal-scaffold": "^2.5",
|
||||
"drupal/admin_toolbar": "^1.26",
|
||||
"drupal/console": "^1.0.2",
|
||||
"drupal/core": "^8.7.0",
|
||||
"drush/drush": "^9.0.0",
|
||||
"josephlavin/tap": "^1.0",
|
||||
"tightenco/collect": "^5.8",
|
||||
"vlucas/phpdotenv": "^2.4",
|
||||
"webflo/drupal-finder": "^1.0.0",
|
||||
"webmozart/path-util": "^2.3",
|
||||
"zaporylie/composer-drupal-optimizations": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"webflo/drupal-core-require-dev": "^8.7.0"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"scripts/composer/ScriptHandler.php"
|
||||
],
|
||||
"files": ["load.environment.php"]
|
||||
},
|
||||
"scripts": {
|
||||
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
|
||||
"pre-install-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
|
||||
],
|
||||
"pre-update-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
|
||||
"@drupal-scaffold"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
|
||||
"@drupal-scaffold"
|
||||
]
|
||||
},
|
||||
"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"]
|
||||
},
|
||||
"drupal-scaffold": {
|
||||
"initial": {
|
||||
".editorconfig": "../.editorconfig",
|
||||
".gitattributes": "../.gitattributes"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue