Drupal 8 + BEE with patch for views daterange filters
{ | |
"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", | |
"drupal-composer/drupal-scaffold": "^2.2", | |
"drupal/console": "^1.0.2", | |
"drupal/core": "~8.5", | |
"drupal/bee": "~1", | |
"drupal/devel": "~1", | |
"drush/drush": "^9.0.0", | |
"webflo/drupal-finder": "^1.0.0", | |
"webmozart/path-util": "^2.3" | |
}, | |
"require-dev": { | |
"webflo/drupal-core-require-dev": "~8.4" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"config": { | |
"sort-packages": true | |
}, | |
"autoload": { | |
"classmap": [ | |
"scripts/composer/ScriptHandler.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" | |
], | |
"post-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
] | |
}, | |
"extra": { | |
"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/contrib/{$name}": ["type:drupal-drush"] | |
}, | |
"patches": { | |
"drupal/core": { | |
"The Views integration Datetime Range fields should extend the views integration for regular Datetime fields": "https://www.drupal.org/files/issues/2786577-270_0.patch" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment