-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 927 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
{
"name": "samihsoylu/cipher-suite-php",
"description": "A lightweight PHP wrapper for the Defuse PHP-Encryption library, designed to simplify key management, session key encoding, and data encryption/decryption. Ideal for developers looking for an easy-to-integrate cryptographic solution.",
"type": "library",
"require": {
"php": "^8.0",
"ext-openssl": "*",
"defuse/php-encryption": "^2.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SamihSoylu\\CipherSuite\\": "src/"
}
},
"authors": [
{
"name": "Samih Soylu",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false
}
},
"require-dev": {
"pestphp/pest": "^1.23",
"friendsofphp/php-cs-fixer": "^3.25"
}
}