-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 806 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 806 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
31
32
{
"name": "genial-framework/encryption",
"type": "library",
"description": "An encryption dependent used to encrypt sensitive data and one-way hash passwords.",
"homepage": "https://github.com/Genial-Framework/Encryption",
"license": "BSD-3-Clause",
"require": {
"php": "^7.0",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"Genial\\Cryptography\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"suggest": {
"ext-sodium": "*"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}