-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1001 Bytes
/
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
{
"name": "takuya/php-letencrypt-acme-dns",
"description": "acme v2 to Let'sEncrypt by dns cloudflare or your own.",
"type": "library",
"license": "GPL-3.0-or-later",
"keywords": [
"acme-client",
"pure-php",
"acme-dns",
"acme-v2",
"cloudflare"
],
"autoload": {
"psr-4": {
"Takuya\\LEClientDNS01\\": "lib/src/"
},
"files": [
"lib/helpers/domain_name_utils.php",
"lib/helpers/base64_safe.php",
"lib/helpers/dns_resolve.php",
"lib/helpers/get_cert.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"authors": [
{
"name": "takuya",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"cloudflare/sdk": "^1.3",
"acmephp/core": "^2.1",
"ext-openssl": "*",
"pear/net_dns2": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "*",
"larapack/dd": "*",
"takuya/php-random-string": "^0.1.0"
}
}