-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
93 lines (93 loc) · 3.19 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": "droptica/droopler-project",
"description": "Project template for Droopler with Composer",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.droopler.com",
"support": {
"docs": "https://www.droopler.com/developers",
"issues": "https://www.drupal.org/project/issues/droopler?categories=All"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^2.2",
"droptica/droopler": "4.0.0-alpha3",
"drupal/better_exposed_filters": "^7.0",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-recommended": "^10.0",
"drupal/facets": "^2.0",
"drupal/redis": "^1.7",
"drupal/search_api": "^1.29",
"drupal/tvi": "2.0.x-dev@dev",
"drush/drush": "^13",
"oomphinc/composer-installers-extender": "^2.0",
"platformsh/config-reader": "^2.4"
},
"require-dev": {
"drupal/core-dev": "^10.0",
"drupal/devel": "^5.0",
"ericmartel/codeception-email": "^1.0",
"droptica/codeception-package": "^10.8"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/console-extend-plugin": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true,
"zaporylie/composer-drupal-optimizations": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
},
"preferred-install": {
"droptica/droopler": "source",
"*": "dist"
}
},
"extra": {
"enable-patching": 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:git", "type:bower-asset", "type:npm-asset"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/droopler": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {
"drupal/features": {
"[3375425] Deprecated function: Creation of dynamic property": "https://www.drupal.org/files/issues/2023-07-19/3375425-3.patch"
}
}
}
}