-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.97 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
{
"name": "mxr576/ddqg-composer-audit",
"description": "Drupal Dependency Quality Gate Composer Audit plugin",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"Drupal",
"QA",
"dev",
"audit",
"dependency analyses",
"security"
],
"authors": [
{
"name": "Dezső BICZÓ",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"composer-plugin-api": "^2.3",
"composer/composer": "^2.7.7",
"cweagans/composer-configurable-plugin": "^2.0",
"halaxa/json-machine": "^1.2",
"loophp/collection": "^7.5.2",
"psr/event-dispatcher": "^1.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30",
"ergebnis/license": "^2.1",
"friendsofphp/php-cs-fixer": "^3.65",
"phparkitect/phparkitect": "~0.3.33",
"phpstan/phpstan": "^2.0.4",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-webmozart-assert": "^2.0.0"
},
"suggest": {
"mxr576/composer-audit-changes": "The `composer audit-changes` Composer command works similarly to the built-in `composer audit` command but it only audits newly installed or updated packages since a previous version of `composer.lock`."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"mxr576\\ddqgComposerAudit\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"class": "\\mxr576\\ddqgComposerAudit\\Presentation\\Composer\\Plugin",
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"plugin-optional": true
}
}