-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.04 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.04 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
68
69
{
"name": "mteu/sbom-parser",
"description": "",
"license": "GPL-3.0-or-later",
"type": "package",
"authors": [
{
"name": "Martin Adler",
"email": "mteu@mailbox.org"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"cuyz/valinor": "^2.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.1",
"cyclonedx/cyclonedx-php-composer": "^6.0",
"ergebnis/composer-normalize": "^2.28",
"friendsofphp/php-cs-fixer": "^3.8",
"mteu/zealous-stan": "^0.6.3",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpcov": "^10.0 || ^11.0.0",
"phpunit/phpunit": "^11.5 || ^12.1",
"shipmonk/composer-dependency-analyser": "*"
},
"autoload": {
"psr-4": {
"mteu\\SbomParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mteu\\SbomParser\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"cyclonedx/cyclonedx-php-composer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"lock": true,
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"scripts": {
"post-install-cmd": [
"@cgl install"
],
"cgl": "@composer -d tests/CGL --",
"fix": "@cgl fix",
"lint": "@cgl lint",
"sca": "@cgl sca",
"test": [
"@test:unit"
],
"test:coverage": [
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:merge": "phpcov merge --html .build/coverage/merged_html --clover .build/coverage/clover.xml --text php://stdout .build/coverage/php ",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:functional": "@test:coverage:functional --no-coverage",
"test:unit": "@test:coverage:unit --no-coverage"
}
}