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": {
|
2022-03-05 02:08:44 +00:00
|
|
|
"composer/installers": "^2.0",
|
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": {
|
2022-03-31 09:19:21 +00:00
|
|
|
"behat/mink": "^1.10",
|
|
|
|
"behat/mink-browserkit-driver": "^2.1",
|
2020-03-11 21:14:29 +00:00
|
|
|
"behat/mink-selenium2-driver": "^1.4",
|
2022-08-31 22:48:03 +00:00
|
|
|
"composer/composer": "^2.4",
|
2021-05-27 12:40:30 +00:00
|
|
|
"drupal/coder": "^8.3.10",
|
|
|
|
"instaclick/php-webdriver": "^1.4.1",
|
2023-02-14 18:54:42 +00:00
|
|
|
"justinrainbow/json-schema": "^5.2",
|
2023-02-23 15:40:18 +00:00
|
|
|
"mglaman/phpstan-drupal": "^1.1.29",
|
2022-07-26 13:01:01 +00:00
|
|
|
"mikey179/vfsstream": "^1.6.11",
|
2021-12-13 16:56:07 +00:00
|
|
|
"phpspec/prophecy-phpunit": "^2",
|
Issue #3178534 by mondrake, klausi, alexpott, longwave, mallezie, Taran2L, mglaman, Spokje, kim.pepper, daffie, andypost, neclimdul, xjm, Gábor Hojtsy, cmlara: Start running PHPStan on Drupal core (level 0)
2022-01-18 09:34:31 +00:00
|
|
|
"phpstan/extension-installer": "^1.1",
|
2023-02-23 15:40:18 +00:00
|
|
|
"phpstan/phpstan": "^1.10.1",
|
2023-02-14 18:54:42 +00:00
|
|
|
"phpunit/phpunit": "^9.5",
|
|
|
|
"symfony/browser-kit": "^6.2",
|
2022-11-30 22:07:25 +00:00
|
|
|
"symfony/css-selector": "^6.2",
|
2023-02-14 18:54:42 +00:00
|
|
|
"symfony/dom-crawler": "^6.2",
|
2022-11-30 22:07:25 +00:00
|
|
|
"symfony/error-handler": "^6.2",
|
|
|
|
"symfony/filesystem": "^6.2",
|
|
|
|
"symfony/finder": "^6.2",
|
|
|
|
"symfony/lock": "^6.2",
|
2023-02-14 18:54:42 +00:00
|
|
|
"symfony/phpunit-bridge": "^6.2",
|
|
|
|
"symfony/var-dumper": "^6.2"
|
2016-02-02 06:10:10 +00:00
|
|
|
},
|
2020-09-02 08:15:05 +00:00
|
|
|
"replace": {
|
|
|
|
"symfony/polyfill-php72": "*",
|
2022-09-13 15:43:02 +00:00
|
|
|
"symfony/polyfill-php73": "*",
|
|
|
|
"symfony/polyfill-php74": "*",
|
|
|
|
"symfony/polyfill-php80": "*",
|
|
|
|
"symfony/polyfill-php81": "*"
|
2020-09-02 08:15:05 +00:00
|
|
|
},
|
2016-02-02 06:10:10 +00:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"config": {
|
|
|
|
"preferred-install": "dist",
|
2023-02-14 18:54:42 +00:00
|
|
|
"sort-packages": true,
|
2020-11-22 21:21:19 +00:00
|
|
|
"platform": {
|
2022-02-17 01:23:42 +00:00
|
|
|
"php": "8.1.0"
|
2021-12-13 14:11:29 +00:00
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"composer/installers": true,
|
|
|
|
"drupal/core-project-message": true,
|
Issue #3178534 by mondrake, klausi, alexpott, longwave, mallezie, Taran2L, mglaman, Spokje, kim.pepper, daffie, andypost, neclimdul, xjm, Gábor Hojtsy, cmlara: Start running PHPStan on Drupal core (level 0)
2022-01-18 09:34:31 +00:00
|
|
|
"drupal/core-vendor-hardening": true,
|
2022-05-19 09:02:00 +00:00
|
|
|
"phpstan/extension-installer": true,
|
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": 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": [
|
2022-02-01 18:18:23 +00:00
|
|
|
"@composer update phpunit/phpunit --with-dependencies --no-progress"
|
2020-10-13 09:14:35 +00:00
|
|
|
],
|
2019-10-25 09:04:15 +00:00
|
|
|
"post-update-cmd": [
|
2022-08-21 07:36:57 +00:00
|
|
|
"Drupal\\Composer\\Composer::generateMetapackages",
|
|
|
|
"Drupal\\Composer\\Composer::generateComponentPackages"
|
|
|
|
|
2019-10-25 09:04:15 +00:00
|
|
|
],
|
2022-11-28 10:57:49 +00:00
|
|
|
"phpcs": "phpcs --standard=core/phpcs.xml.dist --parallel=$(nproc) --",
|
|
|
|
"phpcbf": "phpcbf --standard=core/phpcs.xml.dist --parallel=$(nproc) --"
|
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
|
|
|
}
|