-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ewertondaniel/bitfinex-php-sdk",
"description": "The Bitfinex PHP SDK is a lightweight PHP library designed to interact with the Bitfinex REST API. This SDK simplifies the integration of Bitfinex cryptocurrency trading functionalities into your PHP applications.",
"keywords": [
"bitfinex",
"bitfinex-api",
"bitfinex-api-php",
"bitfinex-php",
"bitfinex-php-sdk",
"laravel",
"laravel-package",
"exchange"
],
"type": "library",
"homepage": "https://github.com/EwertonDaniel/bitfinex-php-sdk",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EwertonDaniel\\Bitfinex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"authors": [
{
"name": "Ewerton Daniel",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"whichbrowser/parser": "^2.1"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.1.1|^7.10.0",
"orchestra/testbench": "^8.27",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-laravel": "^2.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"symfony/var-dumper": "^6.2"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"@clear"
],
"start": [
"Composer\\Config::disableProcessTimeout",
"composer run build",
"php vendor/bin/testbench serve"
],
"analyse": "phpstan analyse ./src",
"test": "pest",
"format": "pint",
"lint": [
"pint --ansi",
"phpstan analyse --verbose --ansi ./src"
]
},
"extra": {
"laravel": {
"providers": [
"EwertonDaniel\\Bitfinex\\BitfinexServiceProvider"
],
"aliases": {
"Bitfinex": "EwertonDaniel\\Bitfinex\\Facades\\Bitfinex"
}
}
}
}