forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.37 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
{
"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": {
"drupal/console": "1.0.0-beta5",
"phing/phing": "~2",
"phpunit/phpunit": "~5.4",
"squizlabs/php_codesniffer": "^2.4",
"symfony/yaml": "~2.7",
"drupal/coder": "~8.2",
"symfony/console": "~2",
"symfony/twig-bridge": "~2",
"php": ">=5.6",
"composer-plugin-api": "^1.0.0",
"dflydev/dot-access-data": "^1.0"
},
"autoload": {
"psr-4": {
"Acquia\\Blt\\": "src/",
"Acquia\\Blt\\Tests\\": "tests/phpunit/src/"
}
},
"extra": {
"class": "Acquia\\Blt\\Composer\\Plugin"
},
"bin": [
"bin/blt",
"bin/blt-console"
],
"conflict": {
"drupal/core": "7.*"
},
"suggest": {
"hirak/prestissimo": "^0.3"
},
"minimum-stability": "beta",
"prefer-stable": true
}