forked from nuvoleweb/drupal-behat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.72 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
{
"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",
"bovigo/assert": "~1.7"
},
"require-dev": {
"phpunit/phpunit": "~5",
"phpro/grumphp": "0.11.4",
"squizlabs/php_codesniffer": "~2.9",
"drupal/coder": "8.2.8",
"composer/installers": "~1",
"drupal-composer/drupal-scaffold": "dev-master",
"drush/drush": "*",
"drupal/chosen": "~2",
"drupal/coffee": "~1",
"drupal/config_installer": "~1",
"drupal/paragraphs": "~1",
"harvesthq/chosen": "1.5.0",
"drupal/core": "8.3.x-dev"
},
"autoload": {
"psr-4": {
"NuvoleWeb\\Drupal\\": "./src/",
"NuvoleWeb\\Drupal\\Tests\\": "./tests/scr/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "1.5.0",
"type": "drupal-library",
"dist": {
"url": "https://github.com/harvesthq/chosen/releases/download/v1.5.0/chosen_v1.5.0.zip",
"type": "zip"
}
}
}
],
"extra": {
"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"]
}
}
}