-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
46 lines (46 loc) · 1.3 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
{
"name": "nexylan/nexycrypt",
"description": "Let's Encrypt ACME protocol PHP client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sullivan SENECHAL",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-openssl": "*",
"doctrine/collections": "^1.3",
"php-http/client-common": "^1.6 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.3",
"spomky-labs/base64url": "^1.0",
"webmozart/assert": "^1.3"
},
"require-dev": {
"analogic/lescript": "^0.1.3",
"monolog/monolog": "^1.22",
"php-http/guzzle6-adapter": "^1.1 || ^2.0",
"php-http/httplug-bundle": "^1.7",
"php-http/mock-client": "^1.0",
"symfony/var-dumper": "^2.7 || ^3.0"
},
"suggest": {
"monolog/monolog": "A PSR-3 compatible logger",
"psr/log": "To log ACME API requests and responses",
"php-http/httplug-bundle": "For Symfony integration as a bundle"
},
"autoload": {
"psr-4": { "Nexy\\NexyCrypt\\": "src" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}