forked from liquidweb/ssl-certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "liquidweb/ssl-certificate",
"description": "A class to easily query the properties of and validate the status of an ssl certificate ",
"keywords": [
"ssl",
"ssl-certificate",
"security"
],
"homepage": "https://github.com/mallardduck/ssl-certificate",
"license": "MIT",
"authors": [
{
"name": "Dan Pock",
"email": "[email protected]",
"homepage": "https://liquidweb.com",
"role": "Developer"
}
],
"suggests" : {
"ext-gmp": "This helps to speed up the phpseclib functions, highly suggested tho not required."
},
"require": {
"php": "^7.0",
"ext-openssl": "*",
"league/uri": "^5.0",
"nesbot/carbon": "^1.22.1",
"phpseclib/phpseclib": "^2.0.6"
},
"require-dev": {
"ext-ast": "*",
"phpstan/phpstan": "^0.7.0",
"phpunit/phpunit": "6.1.*"
},
"autoload": {
"psr-4": {
"LiquidWeb\\SslCertificate\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"LiquidWeb\\SslCertificate\\Test\\": "tests"
}
},
"scripts": {
"test": "php vendor/bin/phpunit --colors --debug --coverage-text"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}