-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.53 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
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
{
"name": "iota-php/client",
"type": "library",
"description": "IOTA client library implementation in PHP.",
"keywords": ["iota", "tangle", "ledger", "crypto"],
"homepage": "https://github.com/iota-php/client",
"license": "MIT",
"authors": [
{
"name": "Benjamin Ansbach",
"email": "benjaminansbach@gmail.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "iotaledger/kerl",
"version": "master",
"source": {
"url": "https://github.com/iotaledger/kerl.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=7.1.0",
"ext-bcmath": "*",
"ext-gmp": "*",
"psr/container": "^1.0",
"kornrunner/keccak": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/async-client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"iotaledger/kerl": "dev-master as 1.0",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.6",
"guzzlehttp/psr7": "^1.4"
},
"autoload": {
"psr-4": {
"IOTA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IOTA\\Tests\\": "tests"
}
}
}