forked from acmephp/acmephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "acmephp/acmephp",
"description": "Let's Encrypt client written in PHP",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/acmephp/acmephp",
"bin": [
"bin/acme"
],
"keywords": [
"acme",
"acmephp",
"letsencrypt",
"https",
"encryption",
"certificate",
"ssl",
"openssl",
"RSA",
"ECDSA",
"CSR",
"x509",
"cli"
],
"authors": [
{
"name": "Titouan Galopin",
"email": "[email protected]",
"homepage": "http://titouangalopin.com"
},
{
"name": "Jérémy Derussé",
"homepage": "https://twitter.com/jderusse"
}
],
"require": {
"php": ">=7.2.5",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"lib-openssl": ">=0.9.8",
"alibabacloud/cdn": "^1.7",
"alibabacloud/wafopenapi": "^1.7",
"aws/aws-sdk-php": "^3.38",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/psr7": "^1.0",
"lcobucci/jwt": "^3.3|^4.0",
"league/flysystem": "^1.0.19",
"league/flysystem-memory": "^1.0",
"league/flysystem-sftp": "^1.0.7",
"monolog/monolog": "^1.19",
"padraic/phar-updater": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"swiftmailer/swiftmailer": "^5.4|^6.0",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/serializer": "^5.0",
"symfony/yaml": "^5.0",
"webmozart/assert": "^1.0",
"webmozart/path-util": "^2.3"
},
"suggest": {
"daverandom/libdns": "^2.0"
},
"require-dev": {
"phpspec/prophecy": "^1.9",
"symfony/finder": "^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/var-dumper": "^5.0"
},
"autoload": {
"psr-4": {
"AcmePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AcmePhp\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.34"
}
}
}