forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (100 loc) · 2.77 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
{
"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": "*",
"acquia/drupal-environment-detector": "*",
"composer-plugin-api": "^1.1.0 || ^2.0",
"composer/semver": "^1.4",
"consolidation/comments": "^1.0",
"consolidation/config": "^1.0.0",
"consolidation/robo": "^1.4.12 || ^2",
"dflydev/dot-access-data": "^1.1.0",
"doctrine/annotations": "^1.10.0",
"doctrine/common": "^2.5",
"drupal/coder": "^8.3.1",
"drupal/core": "^9.0.0-alpha1",
"drupol/phposinfo": "^1.6",
"drush/drush": "^10.2.2",
"grasmash/yaml-cli": "^2.0.0",
"grasmash/yaml-expander": "^1.2.0",
"sensiolabs/security-checker": "^5.0.0",
"symfony/config": "^4.4",
"symfony/console": "^4.4.6",
"symfony/twig-bridge": "^3.3",
"symfony/yaml": "^4.4",
"zumba/amplitude-php": "^1.0"
},
"conflict": {
"drupal/drupal": "*"
},
"require-dev": {
"acquia/coding-standards": "^0.4.0",
"composer/composer": "^1.6.4",
"composer/installers": "^1.9.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"drupal/core-dev": "^9.0.0-alpha1",
"knplabs/github-api": "^2.6",
"phpunit/phpunit": "^4.8.35 || ^6.5 || ^7",
"squizlabs/php_codesniffer": "^3.0.1"
},
"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"
},
"class": "Acquia\\Blt\\Composer\\Plugin",
"installer-paths": {
"vendor/drupal/core": [
"type:drupal-core"
]
},
"phpcodesniffer-search-depth": 4
},
"autoload": {
"psr-4": {
"Acquia\\Blt\\": "src/",
"Acquia\\Blt\\Tests\\": "tests/phpunit/src/",
"Acquia\\Blt\\Tests\\Robo\\": "tests/phpunit/Robo/"
},
"files": [
"RoboFile.php"
]
},
"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/"
}
}