-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 1.19 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
{
"name": "spomky-labs/aes-key-wrap",
"description": "AES Key Wrap for PHP.",
"type": "library",
"license": "MIT",
"keywords": ["A128KW", "A192KW", "A256KW", "AES", "Key", "Wrap", "Padding", "RFC3394", "RFC5649"],
"homepage": "https://github.com/Spomky-Labs/aes-key-wrap",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky-Labs/aes-key-wrap/contributors"
}
],
"autoload": {
"psr-4": {
"AESKW\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AESKW\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/extension-installer": "^1.1",
"symplify/easy-coding-standard": "^10.0",
"rector/rector": "^0.12.5",
"infection/infection": "^0.25.4"
}
}