forked from nuvoleweb/drupal-behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.7 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
{
"name": "nuvoleweb/drupal-behat",
"type": "behat-extension",
"description": "Drupal Behat extension.",
"keywords": ["drupal", "web", "test", "behat"],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-2.0+",
"authors": [
{
"name": "Nuvole Web",
"email": "[email protected]"
}
],
"require": {
"drupal/drupal-extension": "^3.4 || ^4.0"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal/core-composer-scaffold": "^8.8",
"drupal/chosen": "~2",
"drupal/coffee": "~1",
"drupal/core-dev": "^8.8",
"drupal/paragraphs": "~1",
"drush/drush": "~9.0",
"harvesthq/chosen": "1.8.7",
"openeuropa/task-runner": "^1.0.0-beta6",
"phpro/grumphp": "~0.14"
},
"autoload": {
"psr-4": {
"NuvoleWeb\\Drupal\\": "./src/",
"NuvoleWeb\\Drupal\\Tests\\": "./tests/src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "1.8.7",
"type": "drupal-library",
"dist": {
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip",
"type": "zip"
}
}
}
],
"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"]
}
}
}