forked from drupal-composer/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
119 lines (119 loc) · 3.93 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
{
"name": "t324inc/d324-project",
"description": "D324 Project Template - An Optimal Drupal 8 Project by T324",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "T324",
"homepage": "https://www.t324.com",
"role": "Maintainer"
}
],
"repositories": {
"t324": {
"type": "composer",
"url": "https://t324inc.github.io/satis/"
},
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"php": ">=7.2",
"composer/installers": "^1.2",
"oomphinc/composer-installers-extender": "^1.1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/drupal-library-installer-plugin": "^0.3",
"drupal/console": "^1.0.2",
"drush/drush": "^9.0.0",
"vlucas/phpdotenv": "^3.3",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.1",
"t324inc/d324": "8.7.x-dev",
"t324inc/d324-updater": "8.7.x-dev"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin/",
"secure-http": false,
"optimize-autoloader": true,
"preferred-install": {
"drupal/core": "dist"
}
},
"autoload": {
"files": [
"load.environment.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"D324\\composer\\ScriptHandler::createRequiredFiles",
"D324\\composer\\ScriptHandler::removeGitDirectories",
"@composer drupal-scaffold"
],
"post-update-cmd": [
"D324\\composer\\ScriptHandler::createRequiredFiles",
"D324\\composer\\ScriptHandler::removeGitDirectories"
],
"post-drupal-scaffold-cmd": ["D324\\composer\\ScriptHandler::postDrupalScaffoldProcedure"]
},
"extra": {
"branch-alias": {
"dev-8.x": "8.x-dev"
},
"installer-types": [
"npm-asset",
"bower-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/profiles/{$name}": ["type:drupal-profile"],
"web/themes/d324/{$name}": ["t324inc/d324theme", "t324inc/d324theme_admin"],
"web/modules/d324/{$name}": ["vendor:t324inc"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/modules/custom/{$name}": ["type:custom-drupal-module"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"web/themes/custom/{$name}": ["type:custom-drupal-theme"],
"web/libraries/slick": ["npm-asset/slick-carousel"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:npm-asset",
"type:bower-asset"
],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drupal-libraries": {
"library-directory": "web/libraries",
"libraries": [
{"name": "dropzone","package": "npm-asset/dropzone"},
{"name": "blazy", "package": "npm-asset/blazy"},
{"name": "slick", "package": "npm-asset/slick-carousel"}
]
},
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
}
},
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
}
}
}