forked from kalamuna/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
165 lines (164 loc) · 5.71 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "kalamuna/drupal-project",
"description": "Project template for Kalamuna projects with Drupal 8 via Composer.",
"type": "project",
"keywords": ["Drupal", "Kalamuna"],
"homepage": "https://github.com/kalamuna/drupal-project",
"support": {
"issues": "https://github.com/kalamuna/drupal-project/issues",
"source": "https://github.com/kalamuna/drupal-project.git"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Derek \"Hawkeye Tenderwolf\" DeRaps",
"homepage": "https://www.drupal.org/user/1571646",
"role": "Maintainer"
},
{
"name": "Rob Loach",
"email": "[email protected]",
"homepage": "https://robloach.net",
"role": "Maintainer"
},
{
"name": "Josh \"Eaglelips Toughbear\" Walker",
"homepage": "https://www.drupal.org/u/sonictruth",
"role": "Maintainer"
}
],
"repositories": {
"projects on drupal.org": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"npm and bower packages": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/console": "^1.0.2",
"drupal/core": "~8.5",
"drush/drush": "^9.0.0",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"components/rubaxa-sortable": "^1.6",
"drupal/admin_toolbar": "^1.18",
"drupal/big_pipe_sessionless": "^1.2",
"drupal/block_field": "^1.0@alpha",
"drupal/cache_control_override": "^1.0",
"drupal/chosen": "^2.0",
"drupal/clean_maintenance": "^1.2",
"drupal/components": "^1.0",
"drupal/conditional_fields": "^1.0@alpha",
"drupal/config_split": "^1.1",
"drupal/config_tools": "^1.0",
"drupal/contribute": "^1.0@beta",
"drupal/cshs": "^1.0@beta",
"drupal/easy_breadcrumb": "^1.6",
"drupal/field_group": "^3.0",
"drupal/linkit": "5.x-dev",
"drupal/menu_block": "1.x-dev",
"drupal/menu_breadcrumb": "^1.6",
"drupal/menu_link_weight": "^1.0@beta",
"drupal/paragraphs": "^1.2",
"drupal/pathauto": "^1.0",
"drupal/prepopulate": "^2.0@alpha",
"drupal/redirect": "^1.0",
"drupal/simple_sitemap": "^2.11",
"drupal/stage_file_proxy": "^1.0",
"drupal/twig_tweak": "^2.0",
"harvesthq/chosen": "^1.8",
"kalamuna/autogrow_textarea": "^1.0",
"kalamuna/kalabase": "dev-8.x-1.x",
"kalamuna/kalastatic": "dev-8.x-2.x",
"oomphinc/composer-installers-extender": "^1.1",
"vlucas/phpdotenv": "^2.5"
},
"require-dev": {
"drupal/browsersync": "^1.0@beta",
"drupal/coder": "^8.2",
"drupal/coffee": "^1.0@beta",
"drupal/config_direct_save": "^1.0",
"drupal/config_installer": "^1.3",
"drupal/config_provider": "^1.0@beta",
"drupal/config_sync": "^1.0@alpha",
"drupal/config_update": "^1.5",
"drupal/devel": "^1.2",
"drupal/search_kint": "^1.0",
"drupal/twig_xdebug": "^1.0",
"geerlingguy/drupal-vm": "^4.2",
"kalamuna/kalaconfig": "1.x-dev",
"webflo/drupal-core-require-dev": "~8.5"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"run-scaffold": "if [ ! -f ./web/index.php ]; then composer drupal-scaffold; fi",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"@run-scaffold",
"if hash npm; then npm install; fi"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"@run-scaffold"
],
"test": [
"if hash npm; then npm test; fi",
"phpcs --config-set installed_paths vendor/drupal/coder/coder_sniffer",
"phpcs --standard=Drupal web/modules/custom web/themes/custom web/sites/KalaUtil.php",
"echo 'CALL PHPUNIT TESTS HERE'"
],
"it": [
"composer install",
"composer test"
]
},
"extra": {
"installer-types": [
"component",
"bower-asset",
"npm-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:component",
"type:bower-asset",
"type:npm-asset"
],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"excludes": {
"sites/development.services.yml": "sites/development.services.yml"
}
},
"patches-file": "composer.patches.json",
"enable-patching": true
}
}