-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
40 lines (40 loc) · 1.04 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": "blar/openssl",
"description": "OpenSSL for PHP",
"type": "library",
"keywords": ["php", "openssl"],
"homepage": "https://github.com/blar/openssl/",
"license": "LGPL-3.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Andreas Treichel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"ext-openssl": "*",
"blar/common": "dev-master",
"blar/filesystem": "dev-master"
},
"require-dev": {
"blar/hash": "dev-master",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"blar/hash": "For digest and fingerprints.",
"blar/curl": "Fetch certificates from remote hosts."
},
"support": {
"source": "https://github.com/blar/openssl/",
"issues": "https://github.com/blar/openssl/issues",
"wiki": "https://github.com/blar/openssl/wiki"
},
"autoload": {
"psr-4": {
"Blar\\OpenSSL\\": "lib/Blar/OpenSSL/"
}
}
}