-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.31 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "freshmail/rest-api",
"description": "A php library which implements the functionality of FreshMail REST API.",
"keywords": ["freshmail", "rest"],
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "Tadeusz Kania",
"email": "tadeusz.kania@freshmail.pl",
"homepage": "https://freshmail.pl",
"role": "Developer"
},
{
"name": "Piotr Suszalski",
"email": "piotr.suszalski@freshmail.pl",
"homepage": "https://freshmail.pl",
"role": "Developer"
},
{
"name": "Grzegorz Gorczyca",
"email": "grzegorz.gorczyca@freshmail.pl",
"homepage": "https://freshmail.pl",
"role": "Developer"
},
{
"name": "Piotr Leżoń",
"email": "piotr.lezon@freshmail.pl",
"homepage": "https://freshmail.pl",
"role": "Developer"
}
],
"require": {
"php": ">=7.0||^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^1.1|^2.0|^3.0",
"monolog/monolog": "^2.0|^3.0",
"guzzlehttp/guzzle": "~7.2|^7.3||^7.4"
},
"autoload": {
"psr-4": {
"FreshMail\\ApiV2\\": "src/FreshMail/"
}
}
}