forked from rugk/threema-msgapi-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "lss/threema-gateway",
"type": "library",
"description": "Send end-to-end-encrypted messages to Threema users using the Threema Gateway.",
"keywords": [
"threema",
"gateway",
"threema-wrapper",
"api-gateway",
"api-wrapper",
"message"
],
"homepage": "https://github.com/pavarnos/threema-msgapi-sdk-php",
"license": "MIT",
"authors": [
{
"name": "Threema GmbH",
"email": "[email protected]",
"homepage": "https://gateway.threema.ch",
"role": "Original Developer"
},
{
"name": "rugk",
"email": "[email protected]",
"homepage": "https://github.com/rugk",
"role": "Semi-official fork maintainer"
},
{
"name": "pavarnos",
"email": "[email protected]",
"homepage": "https://github.com/pavarnos",
"role": "Maintain this fork"
}
],
"autoload": {
"psr-4": {
"Threema\\": "src/Threema"
}
},
"autoload-dev": {
"psr-4": {
"Threema\\": "tests/Threema"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-curl": "*",
"ext-sodium": "*"
},
"require-dev": {
"phpunit/phpunit": "^7",
"pds/skeleton": "^1.0",
"symfony/console": "^4.1",
"phpstan/phpstan": "^0.10.2"
},
"bin": [
"bin/threema-gateway"
],
"scripts": {
"test": "./vendor/bin/phpunit",
"phpunit": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyse -l max src"
}
}