-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 3.07 KB
/
composer.json
File metadata and controls
100 lines (100 loc) · 3.07 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "netresearch/nr-vault",
"type": "typo3-cms-extension",
"description": "Secure secrets management for TYPO3 with envelope encryption, access control, and audit logging",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3",
"secrets",
"vault",
"encryption",
"security",
"api-keys",
"credentials"
],
"authors": [
{
"name": "Netresearch DTT GmbH",
"email": "info@netresearch.de",
"homepage": "https://www.netresearch.de",
"role": "Developer"
}
],
"homepage": "https://github.com/netresearch/t3x-nr-vault",
"support": {
"issues": "https://github.com/netresearch/t3x-nr-vault/issues",
"source": "https://github.com/netresearch/t3x-nr-vault"
},
"require": {
"php": "^8.2",
"ext-sodium": "*",
"ext-json": "*",
"typo3/cms-core": "^13.4 || ^14.0",
"typo3/cms-backend": "^13.4 || ^14.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"a9f/typo3-fractor": "^0.5.8",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.32",
"mikey179/vfsstream": "^1.6",
"phpat/phpat": "^0.12.1",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"ssch/typo3-rector": "^3.0",
"typo3/cms-scheduler": "^13.4 || ^14.0",
"typo3/testing-framework": "^9.0"
},
"autoload": {
"psr-4": {
"Netresearch\\NrVault\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\NrVault\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"infection/extension-installer": true,
"a9f/fractor-extension-installer": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "nr_vault"
},
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"scripts": {
"ci": [
"@ci:test:php:unit",
"@ci:test:php:fuzz",
"@ci:test:php:phpstan",
"@ci:test:php:cgl"
],
"ci:cgl": "php-cs-fixer fix",
"ci:test:php:cgl": "php-cs-fixer fix --dry-run --diff",
"ci:test:php:functional": "phpunit -c Build/FunctionalTests.xml",
"ci:test:php:fuzz": "phpunit -c Build/phpunit.xml --testsuite Fuzz",
"ci:test:php:mutation": "infection --configuration=infection.json5 --threads=4",
"ci:test:php:phpstan": "phpstan analyse",
"ci:test:php:rector": "rector process --dry-run",
"ci:test:php:unit": "phpunit -c Build/phpunit.xml --testsuite Unit",
"rector": "rector process",
"test": "phpunit -c Build/phpunit.xml",
"test:all": [
"@test",
"@ci:test:php:functional"
]
}
}