-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
92 lines (92 loc) · 3.54 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "drupal/drupal",
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
"type": "project",
"license": "GPL-2.0+",
"require": {
"drupal/core": "^8.9",
"composer/installers": "^1.6",
"drupal/swiftmailer": "^1.0@beta",
"drupal/admin_toolbar": "^1.26",
"drupal/chosen": "^2.7",
"drupal/contact_storage": "^1.0@beta",
"drupal/email_registration": "^1.0@RC",
"drupal/facets": "^1.3",
"drupal/field_group": "^3.0",
"drupal/honeypot": "^1.29",
"drupal/menu_link_attributes": "^1.0",
"drupal/page_manager": "^4.0@beta",
"drupal/pathauto": "^1",
"drupal/search_api": "^1.12",
"drupal/slick_views": "^1.0",
"drupal/video_embed_field": "^2.0",
"drush/drush": "^9.6",
"drupal/config_ignore": "^2.1",
"drupal/field_permissions": "^1.0@RC",
"paypal/rest-api-sdk-php": "^1.14",
"drupal/stage_file_proxy": "^1",
"cweagans/composer-patches": "^1.6",
"drupal/google_analytics": "^3.0",
"drupal/redis": "^1.5",
"drupal/core-composer-scaffold": "^9.3",
"vlucas/phpdotenv": "^5.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"autoloader-suffix": "Drupal8",
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true
}
},
"extra": {
"_readme": [
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
"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"
],
"installer-paths": {
"core": ["type:drupal-core"],
"modules/contrib/{$name}": ["type:drupal-module"],
"profiles/contrib/{$name}": ["type:drupal-profile"],
"themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"],
"modules/custom/{$name}": ["type:drupal-custom-module"],
"themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {
"drupal/swiftmailer": {
"Notice: Undefined index: filter_format :: https://www.drupal.org/project/swiftmailer/issues/2948607": "https://www.drupal.org/files/issues/2948607-2.patch"
},
"drupal/config_ignore": {
"Support for export filtering via Drush :: https://www.drupal.org/project/config_ignore/issues/2857247": "https://www.drupal.org/files/issues/support_for_export-2857247-12.patch"
}
}
},
"autoload": {
"psr-4": {
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
},
"files": [
"load.environment.php"
]
},
"scripts": {
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
"post-autoload-dump": [
"Drupal\\Core\\Composer\\Composer::ensureHtaccess"
],
"post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
"post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
]
}