Last active
January 15, 2016 20:31
-
-
Save webflo/7e9319dcb2734bb54dcc 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" | |
} | |
], | |
"require": { | |
"composer/installers": "^1.0.20", | |
"cweagans/composer-patches": "~1.0", | |
"drupal/core": "8.0.*", | |
"drush/drush": "~8.0", | |
"drupal/console": "~0.10", | |
"drupal-composer/drupal-security-advisories": "8.0.x-dev", | |
"drupal/dynamic_entity_reference": "dev-8.x-1.x#8713890", | |
"drupal/entity_pilot": "^8.1@beta" | |
}, | |
"require-dev": { | |
"behat/mink": "~1.6", | |
"behat/mink-goutte-driver": "~1.2", | |
"jcalderonzumba/gastonjs": "^1.1@dev", | |
"jcalderonzumba/mink-phantomjs-driver": "dev-master#10d7c48c9a4129463052321b52450d98983c4332", | |
"mikey179/vfsStream": "~1.2", | |
"phpunit/phpunit": "~4.8", | |
"symfony/css-selector": "2.7.*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"scripts": { | |
"post-install-cmd": "sh ./scripts/composer/post-install.sh" | |
}, | |
"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"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment