forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.15 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
{
"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.1",
"ext-json": "*",
"composer-plugin-api": "^1.1.0",
"composer/installers": "^1.2.0",
"composer/semver": "^1.4",
"consolidation/comments": "^1.0",
"consolidation/config": "^1.0.0",
"consolidation/robo": "^1.4.10",
"cweagans/composer-patches": "^1.6.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"dflydev/dot-access-data": "^1.1.0",
"doctrine/common": "^2.5",
"doctrine/inflector": "~1.1.0",
"drupal-composer/drupal-scaffold": "^2.5.4",
"drupal/coder": "^8.3.1",
"drupal/core": "^8.7.0",
"drupol/phposinfo": "^1.6",
"drush/drush": "^9.5.0",
"grasmash/drupal-security-warning": "^1.0.0",
"grasmash/yaml-cli": "^1.0.0",
"grasmash/yaml-expander": "^1.2.0",
"mglaman/drupal-check": ">=1.0.10 <1.1.0",
"oomphinc/composer-installers-extender": "^1.1",
"sensiolabs/security-checker": "^5.0.0",
"symfony/config": "^3.0",
"symfony/console": "^3.4.0",
"symfony/twig-bridge": "^3.3",
"symfony/yaml": "^3.2.8",
"typhonius/acquia-php-sdk-v2": "^1.0.4",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"conflict": {
"drupal/core": "7.*",
"drupal/drupal": "*"
},
"require-dev": {
"acquia/coding-standards": "^0.4.0",
"composer/composer": "^1.6.4",
"knplabs/github-api": "^2.6",
"php-http/guzzle6-adapter": "^1.1",
"phpunit/phpunit": "^4.8.35 || ^6.5 || ^7",
"squizlabs/php_codesniffer": "^3.0.1",
"webflo/drupal-core-require-dev": "^8.6.0"
},
"suggest": {
"davereid/drush-acquia-hook-invoke": "dev-master",
"hirak/prestissimo": "^0.3",
"typhonius/acquia_cli": "^1.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",
"composer-exit-on-patch-failure": true,
"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/"
}
}