-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (47 loc) · 1.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "iexbase/tron-api-laravel",
"description": "Laravel package, PHP API for interacting with Tron (Trx)",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/iexbase/tron-api-laravel",
"authors": [
{
"name": "Shamsudin Serderov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0|^8.1",
"iexbase/tron-api": "^3.0",
"illuminate/support": "^7.0|^8.0|^8.1"
},
"require-dev": {
"orchestra/testbench": "^6.1",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"IEXBase\\TronAPI\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IEXBase\\TronAPI\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"IEXBase\\TronAPI\\Laravel\\TronServiceProvider"
],
"aliases": {
"TronAPI": "IEXBase\\TronAPI\\Laravel\\Facades\\TronAPI"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}