forked from albeorte96/drupal-behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 2.44 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
{
"name": "nuvoleweb/drupal-behat",
"type": "behat-extension",
"description": "Drupal Behat extension.",
"keywords": [
"drupal",
"web",
"test",
"behat"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Nuvole Web",
"email": "info@nuvole.org"
}
],
"require": {
"drupal/drupal-extension": "^3.4 || ^4.0",
"symfony/config": "^4.0 || ^5.0"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal/chosen": "~2",
"drupal/coffee": "~1",
"drupal/core-composer-scaffold": "^8.8 || ~9",
"drupal/core-dev": "^8.8 || ~9",
"drupal/paragraphs": "~1",
"drush/drush": "~10.0",
"ergebnis/composer-normalize": "^2.5",
"harvesthq/chosen": "1.8.7",
"openeuropa/task-runner": "^1.0.0-beta6",
"phpro/grumphp-shim": "^0.19.0"
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "build/"
}
},
"installer-paths": {
"build/core": [
"type:drupal-core"
],
"build/modules/contrib/{$name}": [
"type:drupal-module"
],
"build/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"build/themes/contrib/{$name}": [
"type:drupal-theme"
],
"build/libraries/{$name}": [
"type:drupal-library"
]
}
},
"autoload": {
"psr-4": {
"NuvoleWeb\\Drupal\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"NuvoleWeb\\Drupal\\Tests\\": "./tests/src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "harvesthq/chosen",
"type": "drupal-library",
"version": "1.8.7",
"dist": {
"type": "zip",
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip"
}
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"composer normalize --no-update-lock"
]
}
}