forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.19 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
{
"name": "acquia/blt",
"description": "BLT",
"keywords": [ "drupal", "testing", "deployment", "automation", "template" ],
"authors": [
{
"name": "Matthew Grasmick"
}
],
"support": {
"issues": "https://github.com/acquia/blt/issues",
"docs": "http://blt.readthedocs.io/en/stable"
},
"type": "composer-plugin",
"license": "GPL-2.0",
"require": {
"php": ">=5.6",
"composer-plugin-api": "^1.0.0",
"composer/installers": "^1.2.0",
"composer/semver": "^1.4",
"consolidation/config": "^1.0.0",
"consolidation/robo": "^1.1.4",
"cweagans/composer-patches": "^1.6.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.0",
"dflydev/dot-access-data": "^1.1.0",
"doctrine/common": "^2.5",
"doctrine/inflector": "~1.1.0",
"drupal/coder": "^8.2.11",
"drush/drush": "^9.0.0-beta7",
"grasmash/drupal-security-warning": "^1.0.0",
"grasmash/yaml-cli": "^1.0.0",
"grasmash/yaml-expander": "^1.2.0",
"oomphinc/composer-installers-extender": "^1.1",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.7",
"symfony/console": "^3.2",
"symfony/twig-bridge": "^3.3",
"symfony/yaml": "^3.2",
"tivie/php-os-detector": "^1.0",
"wikimedia/composer-merge-plugin": "^1.4.1"
},
"autoload": {
"psr-4": {
"Acquia\\Blt\\": "src/",
"Acquia\\Blt\\Tests\\": "tests/phpunit/src/",
"Acquia\\Blt\\Tests\\Robo\\": "tests/phpunit/Robo/"
}
},
"extra": {
"class": "Acquia\\Blt\\Composer\\Plugin"
},
"bin": [
"bin/blt"
],
"conflict": {
"drupal/core": "7.*"
},
"config": {
"sort-packages": true
},
"suggest": {
"hirak/prestissimo": "^0.3",
"typhonius/acquia_cli": "^0.0.7",
"davereid/drush-acquia-hook-invoke": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"composer/composer": "dev-master",
"knplabs/github-api": "^2.6",
"php-http/guzzle6-adapter": "^1.1"
}
}