-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.3 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
93
{
"name" : "hasinanjaratin/drupal-lando-boilerplate",
"description" : "Drupal setup with lando, composer, xdebug and grumphp ",
"type" : "project",
"license" : "GPL-2.0-or-later",
"authors" : [{
"name" : "HasinaNjaratin <hasina.mailto@gmail.com>",
"role" : "Maintener"
}
],
"repositories" : [{
"type" : "composer",
"url" : "https://packages.drupal.org/8"
}
],
"require" : {
"php": ">=7.3",
"composer/composer": "^1.9",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^2.2",
"drupal/config_ignore": "^2.2",
"drupal/config_split": "^1.4",
"drupal/core": "^8.8",
"drupal/core-composer-scaffold": "^8.8",
"drupal/ctools": "^3.4",
"drupal/paragraphs": "^1.11",
"drupal/ultimate_cron": "^2.0@alpha",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev" : {
"drupal/coder": "^8.3",
"drupal/console": "^1.0.2",
"drupal/devel": "^2.1",
"drush/drush": "^9.0.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp": "0.18.1",
"phpunit/phpunit": "^9.1"
},
"conflict" : {
"drupal/drupal" : "*"
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config" : {
"autoloader-suffix" : "Drupal8",
"discard-changes" : true,
"optimize-autoloader" : true,
"sort-packages" : true
},
"autoload" : {
"classmap" : [
"scripts/composer/ScriptHandler.php"
]
},
"scripts" : {
"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" : {
"composer-exit-on-patch-failure" : true,
"patchLevel" : {
"drupal/core" : "-p2"
},
"installer-paths" : {
"www/core" : [
"type:drupal-core"
],
"www/libraries/{$name}" : [
"type:drupal-library"
],
"www/modules/contrib/{$name}" : [
"type:drupal-module"
],
"www/profiles/contrib/{$name}" : [
"type:drupal-profile"
],
"www/themes/contrib/{$name}" : [
"type:drupal-theme"
],
"drush/Commands/{$name}" : [
"type:drupal-drush"
]
},
"drupal-scaffold" : {
"locations" : {
"web-root" : "www/"
}
}
}
}