This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
112 lines (112 loc) · 3.37 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
{
"name": "lemberg/draft-template",
"description": "Project template for Drupal 9 sites.",
"license": "GPL-2.0-or-later",
"type": "project",
"require": {
"composer/installers": "^2.2",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "^9.5",
"drupal/core-recommended": "^9.5",
"oomphinc/composer-installers-extender": "^2.0",
"symfony/dotenv": "^6.0"
},
"require-dev": {
"drupal/core-dev": "^9.5",
"drupal/devel": "^5.1",
"drupal/reroute_email": "^2.2",
"drupal/stage_file_proxy": "^2.0",
"drush/drush": "^11.5",
"lemberg/draft-environment": "^3.6"
},
"repositories": {
"_assets": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"_drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Lemberg\\Draft\\Template\\": "src/"
},
"files": [
"autoload.environment.php"
]
},
"config": {
"platform": {
"php": "8.1"
},
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"lemberg/draft-environment": true,
"oomphinc/composer-installers-extender": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"gitignore": true,
"locations": {
"web-root": "docroot/"
}
},
"enable-patching": true,
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {}
},
"scripts": {
"post-install-cmd": [
"Lemberg\\Draft\\Template\\DrupalProject::createRequiredFiles",
"Lemberg\\Draft\\Template\\DrupalProject::localSetup"
],
"post-update-cmd": [
"Lemberg\\Draft\\Template\\DrupalProject::createRequiredFiles",
"Lemberg\\Draft\\Template\\DrupalProject::localSetup"
],
"post-root-package-install": [
"Lemberg\\Draft\\Template\\DrupalProject::applyTemplate",
"Lemberg\\Draft\\Template\\DrupalProject::configureIntegrations",
"Lemberg\\Draft\\Template\\DrupalProject::cleanUp"
]
}
}