-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 944 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
45
46
{
"name": "vleap/warps",
"description": "MultiversX Warps SDK for PHP",
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Vleap\\Warps\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vleap\\Warps\\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",
"nesbot/carbon": "^2.66 || ^3.2",
"multiversx/mx-sdk-php": "dev-main"
},
"require-dev": {
"pestphp/pest": "^2.25"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/michavie/mx-sdk-php.git"
}
]
}