forked from analogic/lescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 721 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 721 Bytes
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
{
"name": "analogic/lescript",
"description": "Lescript is simplified concept of ACME client implementation especially for Let's encrypt service. It's goal is to have one easy to use PHP file without dependencies.",
"type": "library",
"license": "MIT",
"keywords": [
"encryption","letsencrypt", "ACME"
],
"authors": [
{
"name": "Stanislav Humplik",
"email": "sh@analogic.cz",
"homepage": "https://analogic.cz",
"role": "Developer"
}
],
"require": {
"php": ">=5.3",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*"
},
"require-dev": {
"psr/log": "^1",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"files": ["Lescript.php"]
}
}