forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.22 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
{
"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": {
"asm89/twig-lint": "^1.0.2",
"composer/installers": "^1.2.0",
"composer-plugin-api": "^1.0.0",
"doctrine/common": "^2.5",
"doctrine/inflector": "~1.1.0",
"oomphinc/composer-installers-extender": "^1.1",
"dflydev/dot-access-data": "^1.1.0",
"drupal/coder": "^8.2.11",
"drush/drush": "^8.1.10",
"grasmash/drupal-security-warning": "^1.0.0",
"grasmash/yaml-cli": "^1.0.0",
"grasmash/yaml-expander": "^1.0.5",
"php": ">=5.6",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.7",
"symfony/yaml": "^2.8.11|^3.2",
"symfony/console": "^2.8.11|^3.2",
"wikimedia/composer-merge-plugin": "^1.4.1",
"consolidation/robo": "^1.1.0",
"consolidation/config": "^1.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.0",
"tivie/php-os-detector": "^1.0"
},
"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.*"
},
"suggest": {
"hirak/prestissimo": "^0.3",
"typhonius/acquia_cli": "^0.0.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"guzzlehttp/guzzle": "^6.2",
"composer/composer": "dev-master"
}
}