-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·123 lines (123 loc) · 4.07 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "promet/oc-multi",
"description": "County drupal site built for Orange County by Promet Source",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type":"package",
"package": {
"name": "meno/dropzone",
"version": "5.7",
"type": "drupal-library",
"dist": {
"url": "https://github.com/enyo/dropzone/archive/v5.7.0.zip",
"type": "zip"
}
}
}
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar_tools": "^2.0",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/components": "^1.1",
"drupal/console": "^1.0.2",
"drupal/core": "^8.7.1",
"drupal/devel": "^2.1",
"drupal/emulsify_twig": "^1.0",
"drupal/entity": "~1.0-rc3",
"drupal/entity_embed": "^1.0",
"drupal/entity_staging": "^1.0@alpha",
"drupal/environment_indicator": "^3.7",
"drupal/facets": "^1.4",
"drupal/focal_point": "^1.4",
"drupal/memcache": "2.0",
"drupal/migrate_plus": "^4.2",
"drupal/migrate_tools": "^4.5",
"drupal/pathauto": "^1.6",
"drupal/redirect": "^1.6",
"drupal/search_api": "^1.17",
"drupal/search_api_solr": "^4.2",
"drupal/twig_tweak": "^2.5",
"drush/drush": "^9.0.0",
"kporras07/composer-symlinks": "dev-master",
"vlucas/phpdotenv": "^2.4",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev": {
"behat/behat": "3.3",
"dmore/behat-chrome-extension": "^1.3",
"drupal/drupal-extension": "^4.0",
"weitzman/drupal-test-traits": "^1.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": ["load.environment.php"]
},
"scripts": {
"build-assets": [
"@prepare-for-build",
"composer install --optimize-autoloader --no-dev"
],
"prepare-for-build":"DrupalProject\\composer\\ScriptHandler::prepareForBuild",
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"remove-git-dirs": "DrupalProject\\composer\\ScriptHandler::removeGitDirectories",
"project-scaffold": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
],
"post-install-cmd": [
"@project-scaffold",
"@drupal-scaffold",
"@remove-git-dirs"
],
"post-update-cmd": [
"@project-scaffold",
"@drupal-scaffold",
"@remove-git-dirs"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/libraries/{$name}": ["type:drupal-library"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"symlinks": {
"src/modules": "docroot/modules/custom",
"src/themes": "docroot/themes/custom",
"src/profiles": "docroot/profiles/custom",
"src/libraries": "docroot/libraries/custom",
"src/sites": "docroot/sites"
},
"patches": {
"drupal/devel": {
"Missing Drush commands [3106091]": "https://www.drupal.org/files/issues/2020-01-29/drush-service-rename-3106091-2.patch"
}
}
}
}