-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
39 lines (39 loc) · 932 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
34
35
36
37
38
39
{
"name": "romanpitak/dotmailer-api-v2-client",
"type": "library",
"description": "Client library for the dotMailer v2 (REST) API.",
"keywords": [
"dotMailer",
"API",
"REST",
"v2",
"version 2",
"client"
],
"homepage": "https://github.com/romanpitak/dotMailer-API-v2-PHP-client",
"license": "MIT",
"authors": [
{
"name": "Roman Piták",
"email": "roman@pitak.net",
"homepage": "http://pitak.net",
"role": "Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/romanpitak/PHP-REST-Client.git"
}
],
"require": {
"php": ">=5.3.3",
"ext-json": "*",
"romanpitak/php-rest-client": ">=v1.2"
},
"autoload": {
"psr-4": {
"DotMailer\\Api\\": "src/"
}
}
}