-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 1.06 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
{
"name": "drutiny/drutiny",
"type": "library",
"description": "This is a generic Drupal 7 and Drupal 8 site auditing and optional remediation tool.",
"keywords": ["drupal", "audit", "drush", "ssh", "report"],
"license": "GPL-2.0",
"authors": [
{"name": "Sean Hamlin", "email": "[email protected]"},
{"name": "Josh Waihi", "email": "[email protected]"}
],
"support": {
"issues": "https://github.com/seanhamlin/drutiny/issues",
"source": "https://github.com/seanhamlin/drutiny"
},
"require": {
"symfony/console": "^3.1",
"symfony/yaml": "^3.1",
"symfony/class-loader": "^3.1",
"doctrine/annotations": "^1.2",
"twig/twig": "~1.0",
"paragonie/random_compat": "^2.0"
},
"autoload": {
"psr-4": {
"Drutiny\\": "src/",
"DrutinyTests\\": "tests/src/"
}
},
"bin": ["bin/drutiny"],
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "2.*",
"drupal/coder": "^8.2.0"
}
}