-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "spomky-labs/php-aes-gcm",
"description": "AES GCM (Galois Counter Mode) PHP implementation.",
"type": "library",
"license": "MIT",
"keywords": ["GCM", "Galois Counter Mode", "AES", "AES-GCM"],
"homepage": "https://github.com/Spomky-Labs/php-aes-gcm",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},{
"name": "All contributors",
"homepage": "https://github.com/Spomky-Labs/php-aes-gcm/contributors"
}
],
"autoload": {
"psr-4": {
"AESGCM\\": "src/"
}
},
"require": {
"php": ">=5.4",
"lib-openssl": "*",
"beberlei/assert": "^2.4|^3.0",
"symfony/polyfill-mbstring": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.5|^5.0",
"satooshi/php-coveralls": "^1.0"
},
"suggest":{
"ext-crypto": "Highly recommended for better performance."
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}