Created
August 12, 2016 23:11
-
-
Save jmolivas/858f5527e37100324271048b306fe0b9 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": "drupal-composer/drupal-project", | |
"description": "Project template for Drupal 8 projects with composer", | |
"type": "project", | |
"license": "GPL-2.0+", | |
"authors": [ | |
{ | |
"name": "", | |
"role": "" | |
} | |
], | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://packagist.drupal-composer.org" | |
}, | |
{ | |
"type": "vcs", | |
"url": "/Users/jmolivas/develop/drupal/modules/console" | |
} | |
], | |
"require": { | |
"composer/installers": "^1.0.20", | |
"cweagans/composer-patches": "~1.0", | |
"drupal-composer/drupal-scaffold": "^2.0.1", | |
"drupal/console": "dev-remove-relocated-code-on-drupal-console-core", | |
"drupal/core": "~8.0", | |
"drush/drush": "~8.0" | |
}, | |
"require-dev": { | |
"behat/mink": "~1.7", | |
"behat/mink-goutte-driver": "~1.2", | |
"jcalderonzumba/gastonjs": "~1.0.2", | |
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1", | |
"mikey179/vfsStream": "~1.2", | |
"phpunit/phpunit": "~4.8", | |
"symfony/css-selector": "~2.8" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"autoload": { | |
"classmap": [ | |
"scripts/composer/ScriptHandler.php" | |
] | |
}, | |
"scripts": { | |
"drupal-scaffold": [ | |
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold" | |
], | |
"post-install-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
], | |
"post-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
] | |
}, | |
"extra": { | |
"installer-paths": { | |
"web/core": ["type: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"], | |
"console/language/{$name}": ["type:drupal-console-language"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment