-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.14 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
{
"name": "twala-io/twala-php",
"description": "The official Twala SDK for applications written in PHP.",
"license": "GPL-3.0",
"type": "library",
"authors": [
{
"name": "Edil D. Salvador",
"email": "edil.salvador@twala.io"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/twala-io/twala-php.git"
},
"keywords": [
"twala",
"blockchain",
"web3",
"trust",
"identity",
"document"
],
"require": {
"php": ">=7.3",
"sop/asn1": "~3.3",
"sop/crypto-encoding": "~0.2.0",
"sop/crypto-types": "~0.2.1",
"kornrunner/keccak": "~1.0",
"ramsey/uuid": "~4.7",
"web3p/ethereum-util": "~0.1.4"
},
"require-dev": {
"phpunit/phpunit": "~9.5"
},
"autoload": {
"psr-4": {
"Twala\\": "src/",
"Twala\\Helpers\\": "src/Helpers"
}
},
"autoload-dev": {
"psr-4": {
"Twala\\Test\\Unit\\" : "test/unit",
"Twala\\Test\\Unit\\Helpers\\" : "test/unit/Helpers"
}
}
}