2018-11-23 12:29:20 +00:00
{
"name" : "drupal-composer/drupal-project" ,
"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" : {
"composer/installers" : "^1.2" ,
"cweagans/composer-patches" : "^1.6.5" ,
"drupal-composer/drupal-scaffold" : "^2.5" ,
"drupal/admin_toolbar" : "^1.25" ,
"drupal/console" : "^1.0.2" ,
"drupal/core" : "^8.6" ,
"drupal/ctools" : "^3.0" ,
"drupal/pathauto" : "^1.3" ,
"drupal/stage_file_proxy" : "^1.0@alpha" ,
"drupal/token" : "^1.5" ,
"drupal/webform" : "^5.0@RC" ,
"drush/drush" : "^9.0.0" ,
"vlucas/phpdotenv" : "^2.4" ,
"webflo/drupal-finder" : "^1.0.0" ,
"webmozart/path-util" : "^2.3"
} ,
"require-dev" : {
"webflo/drupal-core-require-dev" : "^8.6"
} ,
"conflict" : {
"drupal/drupal" : "*"
} ,
"minimum-stability" : "dev" ,
"prefer-stable" : true ,
"config" : {
"sort-packages" : true
} ,
2018-11-25 19:41:59 +00:00
"autoload" : {
"classmap" : [
"scripts/composer/ScriptHandler.php"
] ,
"files" : [ "load.environment.php" ]
} ,
2018-11-23 12:29:20 +00:00
"scripts" : {
"post-install-cmd" : [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
] ,
"post-update-cmd" : [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
} ,
"extra" : {
"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"
}
}
}
}