-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.17 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "nitor-infotech-oss/parity-substrate-interface",
"description": "By using package you can interact with running substrate node.",
"license": "MIT",
"authors": [{
"name": "Neha Reddy",
"email": "neha.reddy@nitorinfotech.com"
}],
"minimum-stability": "dev",
"require": {
"php": "^7.2.24",
"curl/curl": "^2.3",
"deemru/blake2b": "^1.0",
"furqansiddiqui/bip39-mnemonic-php": "^0.1.4",
"stephenhill/base58": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"phpunit/phpunit": "^7.0.2"
},
"autoload": {
"psr-4": {
"nitorInfoTechOss\\SubstrateInterfacePackage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"nitorInfoTechOss\\SubstrateInterfacePackage\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor\\bin\\phpunit",
"phpunit": "vendor/bin/phpunit",
"coverage-test": "vendor\\bin\\phpunit --coverage-html /test-reports/coverage",
"format": "vendor\\bin\\php-cs-fixer fix"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}