Last active
February 26, 2020 03:37
-
-
Save balsama/86235f36486b426620fc940c438cc491 to your computer and use it in GitHub Desktop.
Acquia Migrate Assistant Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "acquia/acquia-migrate-project", | |
"type": "project", | |
"description": "Project template for Acquia Migrate Assistant", | |
"homepage": "https://www.drupal.org/project/drupal", | |
"license": "GPL-2.0-or-later", | |
"require": { | |
"php": "~7.3.0", | |
"composer/installers": "^1.2", | |
"cweagans/composer-patches": "^1.6", | |
"drupal-composer/drupal-scaffold": "^2.0.0", | |
"drupal/acquia_migrate": "dev-8.x-1.x", | |
"drupal/core-recommended": "^8.8" | |
}, | |
"require-dev": { | |
"drush/drush": "^10", | |
"webflo/drupal-finder": "^1.0.0" | |
}, | |
"config": { | |
"platform": { | |
"php": "7.3" | |
}, | |
"process-timeout": 0, | |
"sort-packages": true | |
}, | |
"extra": { | |
"drupal-scaffold": { | |
"locations": { | |
"web-root": "docroot/" | |
}, | |
"file-mapping": {} | |
}, | |
"enable-patching": "true", | |
"installer-paths": { | |
"docroot/core": [ | |
"type:drupal-core" | |
], | |
"docroot/libraries/{$name}": [ | |
"type:drupal-library", | |
"type:bower-asset", | |
"type:npm-asset" | |
], | |
"docroot/modules/contrib/{$name}": [ | |
"type:drupal-module" | |
], | |
"docroot/profiles/contrib/{$name}": [ | |
"type:drupal-profile" | |
], | |
"docroot/themes/contrib/{$name}": [ | |
"type:drupal-theme" | |
], | |
"drush/contrib/{$name}": [ | |
"type:drupal-drush" | |
] | |
}, | |
"installer-types": [ | |
"bower-asset", | |
"npm-asset" | |
], | |
"patchLevel": { | |
"drupal/core": "-p2" | |
} | |
}, | |
"repositories": { | |
"drupal": { | |
"type": "composer", | |
"url": "https://packages.drupal.org/8" | |
}, | |
"assets": { | |
"type": "composer", | |
"url": "https://asset-packagist.org" | |
}, | |
"acquia_migrate": { | |
"type": "github", | |
"url": "https://github.com/acquia/acquia_migrate", | |
"no-api": true | |
} | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"scripts": { | |
"post-install-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", | |
"post-update-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", | |
"install-drupal": [ | |
"composer install", | |
"php docroot/core/scripts/drupal install standard" | |
], | |
"install-migrate-assistant": "./vendor/bin/drush pm:enable acquia_migrate --yes", | |
"nuke": [ | |
"chmod -R +w ./docroot/sites/default", | |
"rm -rf .composer.lock ./vendor ./docroot" | |
], | |
"quick-start": [ | |
"@composer install-drupal", | |
"@composer install-migrate-assistant", | |
"@composer run-server" | |
], | |
"run-server": "cd docroot && php ./core/scripts/drupal server" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment