-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.95 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.95 KB
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
67
{
"name": "netresearch/composer-audit-responsibility",
"description": "Composer plugin implementing responsibility propagation for security audits — stops upstream/framework transitive dependency advisories from blocking library/extension CI",
"type": "composer-plugin",
"license": "MIT",
"keywords": [
"composer-plugin",
"security",
"audit",
"framework",
"upstream",
"responsibility",
"typo3",
"symfony",
"drupal",
"laravel",
"wordpress",
"magento"
],
"authors": [
{
"name": "Netresearch DTT GmbH",
"homepage": "https://www.netresearch.de"
}
],
"homepage": "https://github.com/netresearch/composer-audit-responsibility",
"support": {
"issues": "https://github.com/netresearch/composer-audit-responsibility/issues",
"source": "https://github.com/netresearch/composer-audit-responsibility"
},
"require": {
"php": ">=8.1",
"composer-plugin-api": "^2.6"
},
"require-dev": {
"captainhook/captainhook": "^5.28",
"composer/composer": "^2.9",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5 || ^11.0 || ^13.0"
},
"autoload": {
"psr-4": {
"Netresearch\\ComposerAuditResponsibility\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\ComposerAuditResponsibility\\Tests\\": "tests/"
}
},
"extra": {
"class": "Netresearch\\ComposerAuditResponsibility\\Plugin"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"netresearch/composer-audit-responsibility": true
}
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse",
"lint": "php-cs-fixer fix --dry-run --diff",
"lint:fix": "php-cs-fixer fix"
}
}