forked from stratoserp/stratoserp_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (97 loc) · 3.4 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
{
"name": "stratoserp/stratoserp_base",
"description": "StratosERP installation profile",
"type": "drupal-profile",
"homepage": "https://github.com/stratoserp/stratoserp_base",
"license": "GPL-2.0-or-later",
"repositories": [
{ "type": "composer", "url": "https://packages.drupal.org/8" },
{ "type": "composer", "url": "https://asset-packagist.org" }
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^2.3",
"drupal/bootstrap4": "^2.0",
"drupal/chartjs_api": "^1.1",
"drupal/core": "^9",
"drupal/core-composer-scaffold": "^9",
"drupal/duration_field": "^2.0@rc",
"drupal/dynamic_entity_reference": "^1.10",
"drupal/eva": "^2.1",
"drupal/extra_field": "^1.2",
"drupal/field_group": "dev-3.x",
"drupal/fullcalendar_view": "^5.0",
"drupal/geolocation": "^3.2",
"drupal/hook_event_dispatcher": "^2.1",
"drupal/multiple_fields_remove_button": "1.*@dev",
"drupal/token": "^1.7",
"drupal/toolbar_menu": "^2.2",
"drupal/twig_tweak": "^3.0",
"drupal/views_bulk_operations": "^3.9",
"drupal/views_data_export": "dev-1.x",
"drupal/webform": "^6.0",
"drupal/xero": "dev-2.x",
"drush/drush": "^10",
"oomphinc/composer-installers-extender": "^2.0",
"vlucas/phpdotenv": "^5",
"webflo/drupal-finder": "^1.0.0",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"discard-changes": true,
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"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"]
},
"preserve-paths": [
"web/sites"
],
"patches": {
"drupal/core": {
"Update window location on tab click": "./patches/vertical-tabs.patch"
},
"drupal/dynamic_entity_reference": {
"Allow users to select a bundle": "https://www.drupal.org/files/issues/2018-10-28/dynamic_entity_reference-select-per_bundle-2381991-9.patch"
},
"drupal/extra_field": {
"Allow form extra fields to be declared through ExtraField plugins": "https://www.drupal.org/files/issues/2019-01-17/extra_field-using_in_forms-2882061-24.patch"
}
},
"patchLevel": {
"drupal/core": "-p1"
}
}
}