forked from acmephp/acmephp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.4 KB
/
Copy pathcomposer.json
File metadata and controls
86 lines (86 loc) · 2.4 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
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
{
"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": "galopintitouan@gmail.com",
"homepage": "http://titouangalopin.com"
},
{
"name": "Jérémy Derussé",
"homepage": "https://twitter.com/jderusse"
}
],
"require": {
"php": ">=8.3",
"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",
"consolidation/self-update": "^2.2 || ^3",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/psr7": "^2.4.5",
"lcobucci/jwt": "^5.3",
"league/flysystem": "^3.10",
"league/flysystem-memory": "^3.10",
"league/flysystem-sftp-v3": "^3.10",
"monolog/monolog": "^3",
"psr/container": "^1 || ^2",
"psr/http-message": "^1 || ^2",
"psr/log": "^2 || ^3",
"symfony/config": "^5.4.12 || ^6.4 || ^7.1",
"symfony/console": "^5.4.12 || ^6.4 || ^7.1",
"symfony/dependency-injection": "^5.4.12 || ^6.4 || ^7.1",
"symfony/filesystem": "^5.4.12 || ^6.4 || ^7.1",
"symfony/serializer": "^5.4.12 || ^6.4 || ^7.1",
"symfony/yaml": "^5.4.12 || ^6.4 || ^7.1",
"webmozart/assert": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.11.11",
"symfony/finder": "^5.4.12 || ^6.4 || ^7.1",
"symfony/phpunit-bridge": "^5.4.12 || ^6.4 || ^7.1",
"symfony/property-access": "^5.4.12 || ^6.4 || ^7.1",
"symfony/var-dumper": "^5.4.12 || ^6.4 || ^7.1"
},
"autoload": {
"psr-4": {
"AcmePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AcmePhp\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}