-
-
Notifications
You must be signed in to change notification settings - Fork 192
/
composer.json
82 lines (82 loc) · 2.11 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
{
"name": "drupal/drupal-extension",
"type": "behat-extension",
"description": "Drupal extension for Behat",
"keywords": ["drupal", "web", "test"],
"homepage": "http://drupal.org/project/drupalextension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jonathan Hedstrom",
"email": "[email protected]"
},
{
"name": "Melissa Anderson",
"homepage": "https://github.com/eliza411"
},
{
"name": "Pieter Frenssen",
"homepage": "https://github.com/pfrenssen"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"behat/behat": "~3.2",
"behat/mink-browserkit-driver": "^2.1.0",
"behat/mink-selenium2-driver": "~1.1",
"drupal/drupal-driver": "^2.2.1 || dev-master",
"friends-of-behat/mink-extension": "^2.7.1",
"symfony/http-client": "~4.4 || ^5 || ^6",
"webflo/drupal-finder": "^1.2"
},
"require-dev": {
"composer/installers": "^2",
"drupal/coder": "^8.3",
"drupal/core": "^10",
"drupal/core-composer-scaffold": "^10",
"drush/drush": "^11.6.0 || ^12.4 || ^13",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/phpspec": "^4.0 || ^6.0 || ^7.0"
},
"scripts": {
"test": [
"composer validate --no-interaction",
"parallel-lint src spec features fixtures",
"phpcs --standard=./phpcs-ruleset.xml -p",
"phpcs --standard=./phpcs-drupal-ruleset.xml -p",
"phpspec run -f pretty --no-interaction"
]
},
"autoload": {
"psr-0": {
"Drupal\\Drupal": "src/",
"Drupal\\Exception": "src/",
"Drupal\\DrupalExtension": "src/",
"Drupal\\MinkExtension": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.1.x-dev"
},
"installer-paths": {
"drupal/core": [
"type:drupal-core"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "drupal/"
}
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true
},
"sort-packages": true
}
}