-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (44 loc) · 919 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
40
41
42
43
44
{
"name": "iota-community/iota.php",
"type": "library",
"description": "IOTA.php library implementation in PHP",
"keywords": [
"iota",
"chrysalis",
"tangle",
"crypto"
],
"homepage": "https://github.com/iota-community/iota.php",
"license": "Apache License 2.0",
"authors": [
{
"name": "Stefan Braun",
"homepage": "https://twitter.com/tanglePHP",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/iota-community/iota.php/issues",
"source": "https://github.com/iota-community/iota.php",
"chat": "https://discord.iota.org/"
},
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-sodium": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.5"
},
"autoload": {
"psr-4": {
"IOTA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IOTA\\": "tests/"
}
}
}