Created
September 6, 2017 13:55
-
-
Save vijaycs85/90a9846e2eba438900ae8c499208ad3e to your computer and use it in GitHub Desktop.
This file contains 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": "mycompany/myproject", | |
"description": "My project description", | |
"type": "project", | |
"license": "GPL-2.0+", | |
"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/core": "~8.3" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"scripts": { | |
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold" | |
}, | |
"extra": { | |
"installer-paths": { | |
"docroot/core": ["type:drupal-core"], | |
"docroot/libraries/{$name}": ["type:drupal-library"], | |
"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"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment