forked from DrupalStand/drupal-dev-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·82 lines (82 loc) · 2.57 KB
/
composer.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.57 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": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.5",
"cweagans/composer-patches": "^1.6.5",
"drupal/core": "^8.7.0",
"drush/drush": "^9.0.0",
"drupal/console": "^1.0.2",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.0",
"drupal/admin_toolbar": "^1.0"
},
"require-dev": {
"webflo/drupal-core-require-dev": "^8.7.0",
"behat/behat": "^3.5.0",
"emuse/behat-html-formatter": "^0.1.0",
"bex/behat-screenshot": "^1.2",
"drupal/drupal-extension": "~3.2",
"jarnaiz/behat-junit-formatter": "^1.3.2",
"drupal/devel": "^2.1",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"installer-paths": {
"webroot/core": ["type:drupal-core"],
"webroot/libraries/{$name}": ["type:drupal-library"],
"webroot/modules/contrib/{$name}": ["type:drupal-module"],
"webroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"webroot/themes/contrib/{$name}": ["type:drupal-theme"],
"webroot/sites/all/drush/contrib/{$name}": ["type:drupal-drush"]
}
},
"config": {
"platform": {
"php": "7.3",
"ext-gd": "1"
}
}
}