2012-06-27 20:43:49 +00:00
|
|
|
{
|
2016-02-02 06:10:10 +00:00
|
|
|
"name": "drupal/drupal",
|
|
|
|
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
|
|
|
|
"type": "project",
|
2018-01-23 08:28:55 +00:00
|
|
|
"license": "GPL-2.0-or-later",
|
2019-10-31 16:54:58 +00:00
|
|
|
"homepage": "https://www.drupal.org/project/drupal",
|
|
|
|
"support": {
|
|
|
|
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
|
|
|
|
"chat": "https://www.drupal.org/node/314178"
|
|
|
|
},
|
2016-02-02 06:10:10 +00:00
|
|
|
"require": {
|
2017-04-03 14:35:50 +00:00
|
|
|
"composer/installers": "^1.0.24",
|
2019-10-12 10:35:54 +00:00
|
|
|
"drupal/core": "self.version",
|
2019-10-31 16:54:58 +00:00
|
|
|
"drupal/core-project-message": "self.version",
|
2019-10-14 11:54:04 +00:00
|
|
|
"drupal/core-vendor-hardening": "self.version",
|
2019-10-12 10:35:54 +00:00
|
|
|
"wikimedia/composer-merge-plugin": "^1.4"
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
2019-08-06 05:51:39 +00:00
|
|
|
"require-dev": {
|
|
|
|
"behat/mink": "1.7.x-dev",
|
|
|
|
"behat/mink-goutte-driver": "^1.2",
|
|
|
|
"behat/mink-selenium2-driver": "1.3.x-dev",
|
|
|
|
"composer/composer": "^1.8",
|
|
|
|
"drupal/coder": "^8.3.2",
|
|
|
|
"jcalderonzumba/gastonjs": "^1.0.2",
|
|
|
|
"jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
|
|
|
|
"mikey179/vfsstream": "^1.2",
|
2019-10-14 13:23:50 +00:00
|
|
|
"phpunit/phpunit": "^6.5 || ^7",
|
2019-08-06 05:51:39 +00:00
|
|
|
"phpspec/prophecy": "^1.7",
|
Issue #3088369 by mikelutz, alexpott, Berdir, Gábor Hojtsy, andypost, martin107, greg.1.anderson, dawehner, jibran, Wim Leers, Mile23, catch: Update Drupal 9 to Symfony 4.4-dev
2019-10-21 14:59:46 +00:00
|
|
|
"symfony/css-selector": "^4.4",
|
|
|
|
"symfony/phpunit-bridge": "^4.4",
|
|
|
|
"symfony/debug": "^4.4",
|
2019-10-04 22:05:43 +00:00
|
|
|
"justinrainbow/json-schema": "^5.2",
|
Issue #3088369 by mikelutz, alexpott, Berdir, Gábor Hojtsy, andypost, martin107, greg.1.anderson, dawehner, jibran, Wim Leers, Mile23, catch: Update Drupal 9 to Symfony 4.4-dev
2019-10-21 14:59:46 +00:00
|
|
|
"symfony/filesystem": "^4.4",
|
|
|
|
"symfony/finder": "^4.4",
|
|
|
|
"symfony/lock": "^4.4",
|
|
|
|
"symfony/browser-kit": "^4.4",
|
|
|
|
"symfony/dom-crawler": "^4.4"
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"config": {
|
|
|
|
"preferred-install": "dist",
|
|
|
|
"autoloader-suffix": "Drupal8"
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"_readme": [
|
|
|
|
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
|
2017-02-09 19:57:26 +00:00
|
|
|
"To change the autoloader you can edit ./autoload.php.",
|
|
|
|
"This file specifies the packages.drupal.org repository.",
|
|
|
|
"You can read more about this composer repository at:",
|
|
|
|
"https://www.drupal.org/node/2718229"
|
2016-02-02 06:10:10 +00:00
|
|
|
],
|
2019-08-02 20:16:21 +00:00
|
|
|
"merge-plugin": {
|
|
|
|
"recurse": true,
|
|
|
|
"replace": false,
|
|
|
|
"merge-extra": false
|
|
|
|
},
|
2016-12-06 13:11:22 +00:00
|
|
|
"installer-paths": {
|
2019-08-02 20:16:21 +00:00
|
|
|
"core": ["type:drupal-core"],
|
2019-09-30 00:51:38 +00:00
|
|
|
"libraries/{$name}": ["type:drupal-library"],
|
2016-12-06 13:11:22 +00:00
|
|
|
"modules/contrib/{$name}": ["type:drupal-module"],
|
|
|
|
"profiles/contrib/{$name}": ["type:drupal-profile"],
|
|
|
|
"themes/contrib/{$name}": ["type:drupal-theme"],
|
2019-09-30 00:51:38 +00:00
|
|
|
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
|
2017-04-03 14:35:50 +00:00
|
|
|
"modules/custom/{$name}": ["type:drupal-custom-module"],
|
|
|
|
"themes/custom/{$name}": ["type:drupal-custom-theme"]
|
2019-10-31 16:54:58 +00:00
|
|
|
},
|
|
|
|
"drupal-core-project-message": {
|
|
|
|
"post-install-cmd-message": [
|
|
|
|
"<bg=blue;fg=white>drupal/drupal</>: This package is meant for core development,",
|
|
|
|
" and not intended to be used for production sites.",
|
|
|
|
" See: https://www.drupal.org/node/3082474"
|
|
|
|
],
|
|
|
|
"post-create-project-cmd-message": [
|
|
|
|
"<bg=red;fg=white>drupal/drupal</>: This package is meant for core development,",
|
|
|
|
" and not intended to be used for production sites.",
|
|
|
|
" See: https://www.drupal.org/node/3082474"
|
|
|
|
]
|
2016-02-02 06:10:10 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
|
|
|
|
}
|
|
|
|
},
|
2019-08-22 02:45:53 +00:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Drupal\\Composer\\": "composer"
|
|
|
|
}
|
|
|
|
},
|
2016-02-02 06:10:10 +00:00
|
|
|
"scripts": {
|
2019-10-25 09:04:15 +00:00
|
|
|
"pre-install-cmd": "Drupal\\Composer\\Composer::ensureComposerVersion",
|
|
|
|
"pre-update-cmd": "Drupal\\Composer\\Composer::ensureComposerVersion",
|
2016-02-02 06:10:10 +00:00
|
|
|
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
|
2019-10-14 13:23:50 +00:00
|
|
|
"drupal-phpunit-upgrade-check": "Drupal\\Core\\Composer\\Composer::upgradePHPUnit",
|
|
|
|
"drupal-phpunit-upgrade": "@composer update phpunit/phpunit symfony/phpunit-bridge phpspec/prophecy symfony/yaml --with-dependencies --no-progress",
|
2019-10-25 09:04:15 +00:00
|
|
|
"post-update-cmd": [
|
|
|
|
"Drupal\\Composer\\Composer::generateMetapackages",
|
|
|
|
"Drupal\\Composer\\Composer::ensureBehatDriverVersions"
|
|
|
|
],
|
2017-11-10 19:38:05 +00:00
|
|
|
"phpcs": "phpcs --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --",
|
|
|
|
"phpcbf": "phpcbf --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --"
|
2017-02-09 19:57:26 +00:00
|
|
|
},
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://packages.drupal.org/8"
|
2019-08-06 05:51:39 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "path",
|
|
|
|
"url": "core"
|
2019-10-14 11:54:04 +00:00
|
|
|
},
|
2019-10-31 16:54:58 +00:00
|
|
|
{
|
|
|
|
"type": "path",
|
|
|
|
"url": "composer/Plugin/ProjectMessage"
|
|
|
|
},
|
2019-10-14 11:54:04 +00:00
|
|
|
{
|
|
|
|
"type": "path",
|
|
|
|
"url": "composer/Plugin/VendorHardening"
|
2017-02-09 19:57:26 +00:00
|
|
|
}
|
|
|
|
]
|
2012-06-27 20:43:49 +00:00
|
|
|
}
|