-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
45 lines (45 loc) · 1.25 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
{
"name": "acquia/drupal-spec-tool",
"description": "A tool for specifying Drupal architecture details and generating automated tests for them",
"license": "GPL-2.0-only",
"type": "behat-extension",
"keywords": [
"Drupal",
"Behat"
],
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/acquia/drupal-spec-tool/issues",
"source": "https://github.com/acquia/drupal-spec-tool"
},
"require": {
"php": ">=8.1",
"drupal/core": ">=10.0.0-alpha1",
"drupal/drupal-extension": "dev-main",
"traviscarden/behat-table-comparison": "^0.3"
},
"suggest": {
"nickwilde1990/drupal-spec-tool-commands": "Provides Composer commands to automatically populate/update Gherkin files as defined with this tool"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Acquia\\DrupalSpecTool\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "6.x-dev"
}
}
}