-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "ilicmiljan/secure-props",
"description": "Powerful PHP library designed to simplify the encryption and decryption of property data in objects.",
"keywords": ["encryption", "decryption", "aes", "rsa"],
"type": "library",
"autoload": {
"psr-4": {
"IlicMiljan\\SecureProps\\": "src/"
},
"files": ["src/Attribute/SensitiveParameter.php"],
"exclude-from-classmap": ["tests/"]
},
"autoload-dev": {
"psr-4": {
"IlicMiljan\\SecureProps\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Miljan Ilic",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-openssl": "*",
"psr/cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6"
}
}