-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
55 lines (55 loc) · 1.54 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
{
"name": "amazeelabs/algm_drutiny_plugin",
"description": "Core ALGM plugin library that contains the policies and profiles we use to run our Drutiny audits",
"type": "library",
"keywords": ["drutiny", "audit", "performance", "security", "accessibility", "algm"],
"license": "MIT",
"authors": [
{
"name": "Blaize Kaye",
"email": "[email protected]"
},
{
"name": "Tim Clifford",
"email": "[email protected]"
},
{
"name": "Fran Garcia-Linares",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"drutiny/plugin-drupal-8": "^2.3",
"drutiny/plugin-drupal-7": "^2.3",
"spatie/ssl-certificate": "^1.20",
"mlocati/ip-lib": "^1.14"
},
"autoload": {
"psr-4": {
"Drutiny\\algm\\": "src/",
"DrutinyTests\\algm\\": "tests/src/"
}
},
"repositories": {
"algm_drutiny": {
"type": "package",
"package": {
"name": "amazeelabs/algm_drutiny",
"version": "1.0",
"source": {
"url": "https://github.com/AmazeeLabs/algm_drutiny.git",
"type": "git",
"reference": "origin/master"
}
}
}
},
"require-dev": {
"drutiny/drutiny": "^2.4",
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.5",
"dantleech/fink": "^0.10.1"
}
}