-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 986 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
{
"name": "manojx/tron-bundle",
"description": "A Symfony bundle to interact with Tron Blockchain and Wallets.",
"keywords": [
"symfony",
"bundle",
"tron",
"blockchain",
"wallet",
"tronlink",
"tronweb"
],
"version": "1.0.0",
"license": "MIT",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"ManojX\\TronBundle\\": "src/",
"ManojX\\TronBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Manoj Kumar",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/framework-bundle": "^5.4 || ^6.1 || ^7.0",
"symfony/http-client": "^5.4 || ^6.1 || ^7.0",
"simplito/elliptic-php": "^1.0",
"kornrunner/keccak": "^1.1",
"web3p/web3.php": "^0.3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.3"
}
}