-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 1.89 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
{
"name": "rugk/threema-msgapi-sdk-php",
"type": "library",
"description": "Threema PHP-SDK to integrate Threema Gateway in your environment. This SDK allows you to send end-to-end-encrypted messages to Threema users using the Threema Gateway.",
"keywords": ["threema", "message", "messenger", "mobile", "notifications", "notification", "gateway", "sms gateway", "security", "encryption", "encrypted", "switzerland", "libsodium", "nacl", "Curve25519"],
"homepage": "https://gateway.threema.ch/en/developer/sdk-php",
"license" : "MIT",
"authors": [
{
"name": "Threema GmbH",
"email": "[email protected]",
"homepage": "https://gateway.threema.ch",
"role": "Developer"
},
{
"name": "rugk",
"email": "[email protected]",
"homepage": "https://github.com/rugk",
"role": "Maintainer of GitHub repository"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/rugk/threema-msgapi-sdk-php/issues",
"wiki": "https://github.com/rugk/threema-msgapi-sdk-php/wiki",
"source": "https://github.com/rugk/threema-msgapi-sdk-php",
"docs": "https://rugk.github.io/threema-msgapi-sdk-php/"
},
"require": {
"php": ">=5.4.0"
},
"suggest": {
"ext-libsodium": "Installing libsodium is highly recommend! If you use a 64bit version of PHP you can also use a fallback to a pure PHP implementation, but for security reasons it is always recommend to use libsodium. When installing libsodium it is recommend to choose the latest avaliable version. If you cannot or do not want to do this install at least libsodium v1.1.0 or higher as this is the first stable version of the extension."
},
"autoload": {
"files": ["source/bootstrap.php"]
}
}