-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
33 lines (33 loc) · 911 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
{
"name": "imbrish/letsencrypt",
"homepage": "https://github.com/imbrish/letsencrypt",
"description": "PHP script for automatic issuing and renewal of Let's Encrypt SSL certificates on shared hostings.",
"keywords": ["ssl", "certificate", "letsencrypt", "shared hosting"],
"license": "GPL-3.0",
"authors": [
{
"name": "Pawel Dominiak",
"homepage": "https://github.com/imbrish"
}
],
"require": {
"php": ">=5.4.0",
"kelunik/acme-client": "^0.2.13"
},
"autoload": {
"psr-4": {
"Imbrish\\LetsEncrypt\\": "src"
},
"files" : [
"src/helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"Imbrish\\LetsEncrypt\\Composer::handle"
],
"post-update-cmd": [
"Imbrish\\LetsEncrypt\\Composer::handle"
]
}
}