-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 1.13 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
{
"name": "phptek/verifiable",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"description": "Verify that data hasn't changed, by reference to a Blockchain or Merkle storage.",
"keywords": ["silverstripe", "verify", "verifiable", "blockchain", "merkle", "bitcoin", "ethereum", "trillian", "chainpoint", "tierion"],
"authors": [
{
"name": "Russell Michell",
"homepage": "http://theruss.com/",
"email" : "russ@theruss.com"
},
{
"name": "Elliot Sawyer"
}
],
"require": {
"php": ">=7.0",
"ext-msgpack": "*",
"ext-zlib": "*",
"silverstripe/versioned": "^1.1",
"silverstripe/admin": "^1.1",
"phptek/jsontext": "^2.0.0",
"dcentrica/chainpoint-receiptviz-php": "^0.1",
"guzzlehttp/guzzle": "^6.3.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"config": {
"process-timeout": 900
},
"extra": {
"expose": [
"client"
]
},
"minimum-stability": "dev"
}