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": {
|
2020-05-04 10:05:38 +00:00
|
|
|
"composer/installers": "^1.9",
|
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",
|
2020-04-14 11:33:44 +00:00
|
|
|
"drupal/core-vendor-hardening": "self.version"
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
2019-08-06 05:51:39 +00:00
|
|
|
"require-dev": {
|
2020-03-11 21:14:29 +00:00
|
|
|
"behat/mink": "^1.8",
|
2021-05-27 12:40:30 +00:00
|
|
|
"friends-of-behat/mink-browserkit-driver": "^1.4",
|
2019-08-06 05:51:39 +00:00
|
|
|
"behat/mink-goutte-driver": "^1.2",
|
2020-03-11 21:14:29 +00:00
|
|
|
"behat/mink-selenium2-driver": "^1.4",
|
2020-10-28 08:12:54 +00:00
|
|
|
"composer/composer": "^2.0.2",
|
2021-05-27 12:40:30 +00:00
|
|
|
"drupal/coder": "^8.3.10",
|
|
|
|
"fabpot/goutte": "^3.3",
|
|
|
|
"instaclick/php-webdriver": "^1.4.1",
|
2019-11-05 09:31:24 +00:00
|
|
|
"mikey179/vfsstream": "^1.6.8",
|
2021-05-27 12:40:30 +00:00
|
|
|
"phpunit/phpunit": "^8.5.14 || ^9",
|
|
|
|
"phpspec/prophecy": "^1.12",
|
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",
|
2021-06-01 16:40:50 +00:00
|
|
|
"symfony/phpunit-bridge": "^5.3.0",
|
|
|
|
"symfony/var-dumper": "^5.3.0",
|
2020-04-21 12:07:10 +00:00
|
|
|
"symfony/error-handler": "^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",
|
2020-03-19 11:15:53 +00:00
|
|
|
"symfony/dom-crawler": "^4.4 !=4.4.5",
|
2020-10-12 19:44:08 +00:00
|
|
|
"easyrdf/easyrdf": "^0.9 || ^1.0"
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
2020-09-02 08:15:05 +00:00
|
|
|
"replace": {
|
|
|
|
"paragonie/random_compat": "9.99.99",
|
|
|
|
"symfony/polyfill-php70": "*",
|
|
|
|
"symfony/polyfill-php72": "*",
|
|
|
|
"symfony/polyfill-php73": "*"
|
|
|
|
},
|
2016-02-02 06:10:10 +00:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"config": {
|
|
|
|
"preferred-install": "dist",
|
2020-11-22 21:21:19 +00:00
|
|
|
"autoloader-suffix": "Drupal9",
|
|
|
|
"platform": {
|
|
|
|
"php": "7.3.0"
|
2022-02-04 20:23:28 +00:00
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"composer/installers": true,
|
|
|
|
"drupal/core-project-message": true,
|
|
|
|
"drupal/core-vendor-hardening": true
|
2020-11-22 21:21:19 +00:00
|
|
|
}
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
|
|
|
"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
|
|
|
],
|
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",
|
2020-10-13 09:14:35 +00:00
|
|
|
"drupal-phpunit-upgrade": [
|
|
|
|
"@composer update phpunit/phpunit --with-dependencies --no-progress",
|
|
|
|
"@composer require phpspec/prophecy-phpunit:^2 --no-progress --no-suggest"
|
|
|
|
],
|
2019-10-25 09:04:15 +00:00
|
|
|
"post-update-cmd": [
|
2020-03-11 21:14:29 +00:00
|
|
|
"Drupal\\Composer\\Composer::generateMetapackages"
|
2019-10-25 09:04:15 +00:00
|
|
|
],
|
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": [
|
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"
|
2020-11-09 08:06:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://packages.drupal.org/8"
|
2017-02-09 19:57:26 +00:00
|
|
|
}
|
|
|
|
]
|
2012-06-27 20:43:49 +00:00
|
|
|
}
|