-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.62 KB
/
Copy pathcomposer.json
File metadata and controls
82 lines (82 loc) · 2.62 KB
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
{
"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"
},
"require": {
"php": "~7.2",
"code-lab-eu/robo-drupal-setup": "dev-master",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"droptica/droopler": "dev-develop",
"drupal/core": "^8.8",
"drupal/core-composer-scaffold": "^8.8",
"drupal/fontawesome": "~2",
"drupal/photoswipe": "^2.9",
"drush/drush": "~10.0",
"fortawesome/font-awesome":"^5.15",
"oomphinc/composer-installers-extender": "^2",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"drupal/devel": "^2.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.33"
}
},
"scripts": {
"post-drupal-scaffold-cmd": [
]
},
"autoload": {
"files": ["load.environment.php"]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library", "type:git", "type:bower-asset", "type:npm-asset"],
"web/libraries/fontawesome": ["fortawesome/font-awesome"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {
}
},
"repositories": {
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"code-lab-eu/robo-drupal-setup": {
"type": "vcs",
"url": "https://github.com/code-lab-eu/robo-drupal-setup.git"
},
"drupal-packages": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
}
}