-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 793 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 793 Bytes
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
{
"name": "driftwood/symmetric-encryption",
"description": "PHP wrapper around the OpenSSL library providing preconfigured, binary safe, Authenticated Symmetric Encryption.",
"keywords": ["encryption"],
"type": "library",
"license": "EUPL-1.1",
"homepage": "https://github.com/Pixelfck/SymmetricEncryption",
"authors": [
{
"name": "Pixelfck",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.3",
"ext-openssl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"netsilik/base-test-case": "^0.9",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"Driftwood\\": "src/",
"Tests\\": "tests/"
}
}
}