Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
58
composer.json
Normal file
58
composer.json
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"name": "drutopia/drutopia_template",
|
||||
"description": "Template for composer-based Drutopia projects.",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0+",
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"require": {
|
||||
"composer/installers": "^1.0",
|
||||
"drupal-composer/drupal-scaffold": "^2.0.0",
|
||||
"cweagans/composer-patches": "^1.0",
|
||||
"drutopia/drutopia": "^1.0-alpha7",
|
||||
"drupal/core": "~8.5.0",
|
||||
"behat/behat": "^3.4",
|
||||
"drupal/drupal-extension": "^3.3",
|
||||
"behat/mink": "^1.7",
|
||||
"behat/mink-goutte-driver": "^1.2",
|
||||
"drush/drush": "^8.0"
|
||||
},
|
||||
"repositories": {
|
||||
"drupal": {
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
},
|
||||
"drutopia": {
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/drutopia/drutopia"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"web/core": [
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"enable-patching": true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue