Last active
August 10, 2017 10:54
-
-
Save simesy/53726c5e5975a90efbbef39caa3a48a5 to your computer and use it in GitHub Desktop.
Initial composer.json from drupal-composer/drupal-project.
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": "Si", | |
"role": "Developer" | |
} | |
], | |
"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/console": "~1.0", | |
"drupal/core": "~8.0", | |
"drush/drush": "~8.0", | |
"webflo/drupal-finder": "^0.3.0", | |
"webmozart/path-util": "^2.3" | |
}, | |
"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.28 <5", | |
"symfony/css-selector": "~2.8" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"config": { | |
"sort-packages": true | |
}, | |
"autoload": { | |
"classmap": [ | |
"scripts/composer/ScriptHandler.php" | |
] | |
}, | |
"scripts": { | |
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", | |
"pre-install-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion" | |
], | |
"pre-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion" | |
], | |
"post-install-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
], | |
"post-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
] | |
}, | |
"extra": { | |
"installer-paths": { | |
"web/core": ["type:drupal-core"], | |
"web/libraries/{$name}": ["type:drupal-library"], | |
"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