-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 915 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
{
"name": "multiversx/mx-sdk-php",
"description": "MultiversX PHP SDK for interacting with the MultiversX blockchain (in general) and Smart Contracts (in particular).",
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"license": "MIT",
"autoload": {
"psr-4": {
"MultiversX\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MultiversX\\Tests\\": "tests"
}
},
"authors": [],
"require": {
"php": "^8.1",
"bitwasp/bech32": "^0.0.1",
"brick/math": "^0.12",
"kornrunner/keccak": "^1.1",
"illuminate/collections": "^10.0 || ^11.0",
"guzzlehttp/guzzle": "^7.5",
"nesbot/carbon": "^2.66 || ^3.2"
},
"require-dev": {
"pestphp/pest": "^2.25",
"spatie/phpunit-snapshot-assertions": "^5.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}