-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
executable file
·59 lines (59 loc) · 1.39 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
{
"name": "emartech/escher",
"description": "Library for HTTP request signing (PHP implementation)",
"homepage": "https://github.com/emartech/escher-php",
"authors": [
{
"name": "Emarsys Technologies",
"homepage": "http://emarsys.com/",
"role": "company"
},
{
"name": "Andras Barthazi",
"email": "andras@barthazi.hu",
"homepage": "https://github.com/boogie/",
"role": "lead"
},
{
"name": "Csaba Peter Simon",
"email": "fqqdk1@gmail.com",
"homepage": "https://github.com/fqqdk/",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/emartech/escher-php/issues"
},
"license": [
"MIT"
],
"type": "library",
"autoload": {
"psr-4": {"Escher\\": "src/Escher"}
},
"autoload-dev": {
"psr-4": {"Escher\\Test\\": "test/Escher/Test"}
},
"require": {
"ext-json": "*",
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "9.6.19"
},
"keywords": [
"escher",
"hmac",
"sha",
"aws",
"signature",
"http",
"request",
"rest",
"authentication",
"api"
],
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml"
}
}