forked from acmephp/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.19 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
{
"name": "acmephp/core",
"description": "Raw implementation of the ACME protocol in PHP",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/acmephp/core",
"keywords": [
"acmephp",
"letsencrypt",
"https",
"encryption",
"certificate",
"ssl",
"openssl",
"CSR",
"x509"
],
"authors": [
{
"name": "Titouan Galopin",
"email": "galopintitouan@gmail.com",
"homepage": "http://titouangalopin.com"
},
{
"name": "Jérémy Derussé",
"homepage": "https://twitter.com/jderusse"
}
],
"require": {
"php": ">=7.2.5",
"ext-hash": "*",
"ext-json": "*",
"ext-openssl": "*",
"acmephp/ssl": "^2.1",
"guzzlehttp/guzzle": "^6.0|^7.0",
"guzzlehttp/psr7": "^1.7|^2.1",
"lcobucci/jwt": "^3.3|^4.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"webmozart/assert": "^1.0"
},
"autoload": {
"psr-4": {
"AcmePhp\\Core\\": "."
}
},
"config": {
"sort-packages": true
}
}