-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.85 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
{
"name": "drupaltest/behat-traits",
"description": "A collection of traits that help to quickly develop custom Context classes for testing Drupal sites using Behat.",
"type": "library",
"license": "EUPL-1.2",
"require": {
"php": ">=7.1",
"drupal/core": "^8.6 || ^9",
"drupal/drupal-extension": "~4.0"
},
"require-dev": {
"composer/installers": "~1.2",
"drush/drush": "~10.3",
"drupal/core-dev": "^8.9 || ^9",
"drupal/core-composer-scaffold": "^8.9 || ^9",
"guzzlehttp/guzzle": "~6.3",
"instaclick/php-webdriver": "^1.4.5",
"nikic/php-parser": "~3.0|~4.0",
"openeuropa/code-review": "^1.6|^2.0",
"openeuropa/task-runner-drupal-project-symlink": "^1.0.0-beta5"
},
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"extra": {
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
}
},
"autoload": {
"psr-4": {
"DrupalTest\\BehatTraits\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true
},
"discard-changes": true
},
"minimum-stability": "dev",
"prefer-stable": true
}