-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
125 lines (125 loc) · 4.76 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
{
"name": "frees-au/ce",
"description": "as in the website",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://frees.au/ce",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^2.0",
"cweagans/composer-patches": "~2.0",
"drupal/admin_toolbar": "^3",
"drupal/better_exposed_filters": "^7.0",
"drupal/ckeditor5_template": "^1.0",
"drupal/config_ignore": "^3.2",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-recommended": "^10.3",
"drupal/default_content": "^2.0@alpha",
"drupal/easy_breadcrumb": "^2.0",
"drupal/editoria11y": "^2.1",
"drupal/embed": "^1.7",
"drupal/field_group": "^3.4",
"drupal/field_label": "^1.4",
"drupal/gin": "^3.0@rc",
"drupal/gin_login": "^2.0",
"drupal/gin_toolbar": "^1.0@rc",
"drupal/layout_section_classes": "^1.5",
"drupal/linkit": "^6.1",
"drupal/metatag": "^2.0",
"drupal/oembed_providers": "^2.1",
"drupal/pathauto": "^1.12",
"drupal/redirect": "^1.9",
"drupal/search_api_lunr": "^3.0",
"drupal/simple_sitemap": "^4.1",
"drupal/twig_tweak": "^3.4",
"drupal/upgrade_status": "*",
"drush/drush": "^13",
"oomphinc/composer-installers-extender": "^2"
},
"require-dev": {
"drupal/coder": "^8.3",
"drupal/core-dev": "^10.1",
"drupal/tome": "^1.12",
"mglaman/phpstan-drupal": "^1.2",
"palantirnet/drupal-rector": "^0.20.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
},
"sort-packages": true
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --memory-limit=256M",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml",
"phpunit": "vendor/bin/phpunit",
"rector": "vendor/bin/rector --clear-cache --dry-run"
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/.ht.router.php": false,
"[web-root]/.htaccess": false,
"[web-root]/example.gitignore": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/update.php": false,
"[web-root]/web.config": false,
"[web-root]/sites/README.txt": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/sites/example.settings.local.php": false,
"[web-root]/sites/example.sites.php": false,
"[web-root]/sites/default/default.services.yml": false,
"[web-root]/sites/default/default.settings.php": false,
"[web-root]/modules/README.txt": false,
"[web-root]/profiles/README.txt": false,
"[web-root]/themes/README.txt": false
}
},
"installer-types": ["drupal-recipe"],
"installer-paths": {
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/recipes/{$vendor}": ["type:drupal-recipe"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
}
}
}