forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
125 lines (125 loc) · 3.66 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "acquia/blt",
"type": "composer-plugin",
"description": "BLT",
"keywords": [
"drupal",
"testing",
"deployment",
"automation",
"template"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Matthew Grasmick"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"composer-runtime-api": "^2.0",
"acquia/drupal-environment-detector": "^1.3.0",
"consolidation/comments": "^1.0",
"consolidation/config": "^1.0.0",
"consolidation/robo": "^1.4.12 || ^2 || ^3",
"dflydev/dot-access-data": "^1.1.0",
"doctrine/annotations": "^1.10.0",
"drupal/core": "^9.0.0-alpha1",
"drush/drush": "^10.2.2",
"enlightn/security-checker": "^1.3",
"grasmash/yaml-cli": "^2.0.0",
"grasmash/yaml-expander": "^1.2.0",
"loophp/phposinfo": "^1.7.1",
"symfony/config": "^4.4",
"symfony/console": "^4.4.6",
"symfony/twig-bridge": "^3.4 || ^4 || ^5",
"symfony/yaml": "^4.4",
"zumba/amplitude-php": "^1.0"
},
"conflict": {
"acquia/blt-behat": "<=1.0.0",
"drupal/drupal": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6"
},
"suggest": {
"davereid/drush-acquia-hook-invoke": "dev-master",
"hirak/prestissimo": "^0.3",
"typhonius/acquia_cli": "^2.0"
},
"config": {
"php": "7",
"preferred-install": {
"drupal/core": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"10.x-dev": "10.0.x-dev",
"dev-main": "13.x-dev"
},
"class": "Acquia\\Blt\\Composer\\Plugin",
"installer-paths": {
"vendor/drupal/core": [
"type:drupal-core"
]
},
"phpcodesniffer-search-depth": 4,
"violinist": {
"allow_updates_beyond_constraint": 0,
"blocklist": [
"symfony/cache",
"symfony/config",
"symfony/dependency-injection",
"symfony/dotenv",
"symfony/event-dispatcher",
"symfony/expression-language",
"symfony/filesystem",
"symfony/finder",
"symfony/http-kernel",
"symfony/process",
"symfony/validator",
"symfony/yaml"
],
"bundled_packages": {
"symfony/console": [
"symfony/cache",
"symfony/config",
"symfony/dependency-injection",
"symfony/dotenv",
"symfony/event-dispatcher",
"symfony/expression-language",
"symfony/filesystem",
"symfony/finder",
"symfony/http-kernel",
"symfony/process",
"symfony/validator",
"symfony/yaml"
]
},
"number_of_concurrent_updates": 2,
"one_pull_request_per_package": 1
}
},
"autoload": {
"psr-4": {
"Acquia\\Blt\\": "src/",
"Acquia\\Blt\\Tests\\": "tests/phpunit/src/",
"Acquia\\Blt\\Tests\\Robo\\": "tests/phpunit/Robo/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/blt",
"bin/blt.bat"
],
"support": {
"issues": "https://github.com/acquia/blt/issues",
"docs": "https://docs.acquia.com/blt/"
}
}