forked from spatie/ssl-certificate
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.58 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.58 KB
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
55
56
57
58
{
"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/liquidweb/ssl-certificate",
"license": "MIT",
"authors": [
{
"name": "Dan Pock",
"email": "dpock@liquidweb.com",
"homepage": "https://liquidweb.com",
"role": "Developer"
}
],
"suggest" : {
"ext-gmp": "This helps to speed up the phpseclib functions, highly suggested while not required."
},
"require": {
"php": "^7.3|^8.0",
"ext-mbstring": "*",
"ext-filter": "*",
"ext-openssl": "*",
"league/uri": "^5.3.0",
"nesbot/carbon": "^1.39.1|^2.0",
"phpseclib/phpseclib": "^2.0.6"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"composer/package-versions-deprecated": "1.11.99.1",
"brianium/paratest": "^6.2",
"phpstan/phpstan": "^0.12.77",
"phpunit/phpunit": "^9.5.2"
},
"autoload": {
"psr-4": {
"LiquidWeb\\SslCertificate\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"LiquidWeb\\SslCertificate\\Test\\": "tests"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors --coverage-text"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}