-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 1.97 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 1.97 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
83
{
"name": "contentacms/contenta-jsonapi-project",
"description": "Project template for Contenta CMS.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mateu Aguiló Bosch",
"email": "mateu.aguilo.bosch@gmail.com"
},
{
"name": "Daniel Wehner",
"email": "dawehner@users.noreply.github.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"contentacms/contenta_jsonapi": "dev-8.x-3.x",
"drupal-composer/drupal-scaffold": "^2.5",
"cweagans/composer-patches": "^1.6",
"vlucas/phpdotenv": "^2.4",
"drush/drush": "^9.0.0",
"composer/installers": "^1.2",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"webflo/drupal-core-require-dev": "^8.7",
"vijaycs85/drupal-quality-checker": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"load.environment.php"
]
},
"scripts": {
"install:with-mysql": "scripts/install-mysql.sh",
"install:with-sqlite": "scripts/install-sqlite.sh"
},
"extra": {
"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/contrib/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"initial": {
"sites/default/default.services.yml": "sites/default/services.yml",
"sites/default/default.settings.php": "sites/default/settings.php"
},
"omit-defaults": false
},
"enable-patching": true,
"patches": {}
},
"config": {
"preferred-install": {
"*": "auto"
}
}
}