This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
116 lines (116 loc) · 3.61 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
{
"name": "druki/project",
"description": "The druki.ru website codebase.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://druki.ru/",
"authors": [
{
"name": "Nikita Malyshev (Niklan)",
"homepage": "https://niklan.net",
"email": "hello@niklan.net",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/Niklan/druki-website",
"issues": "https://github.com/Niklan/druki-website/issues",
"chat": "https://discord.gg/sc2V8km"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "path",
"url": "web/modules/custom/*"
},
{
"type": "path",
"url": "web/themes/custom/*"
}
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6.5",
"druki/druki": "^1.0",
"druki/druki_author": "^1.0",
"druki/druki_content": "^1.0",
"druki/druki_redirect": "^1.0",
"druki/loremaster": "^1.0",
"drupal/core-composer-scaffold": "^9.0",
"drupal/core-recommended": "^9.0",
"drupal/entity": "^1.2",
"drupal/glisseo": "^1.0@alpha",
"drupal/google_tag": "^1.1",
"drupal/imagemagick": "^3.0",
"drupal/metatag": "^1.8",
"drupal/pathauto": "^1.3",
"drupal/photoswipe": "^3.0",
"drupal/redirect": "^1.6",
"drupal/restui": "^1.16",
"drupal/search_api": "^1.12",
"drupal/simple_sitemap": "^4.0",
"drupal/twig_tweak": "^3.0",
"drupal/warmer": "^1.1",
"drush/drush": "^11.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"php": ">=8.0"
},
"require-dev": {
"chi-teck/drupal-coder-extension": "^1.0",
"drupal/core-dev": "^9.0",
"mglaman/drupal-check": "^1.1",
"phpspec/prophecy-phpunit": "^2",
"weitzman/drupal-test-traits": "^1.5"
},
"autoload-dev": {
"psr-4": {
"Druki\\Tests\\": "tests/src"
}
},
"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/core-composer-scaffold": true
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -ps",
"phpcbf": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit"
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false,
"[web-root]/robots.txt": false
}
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["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"]
}
}
}