-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.09 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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": "fcsapi/rest",
"version": "4.0.0",
"description": "PHP REST API client for Forex, Cryptocurrency, and Stock market data from FCS API",
"type": "library",
"license": "MIT",
"keywords": [
"fcs",
"fcsapi",
"forex",
"cryptocurrency",
"crypto",
"stock",
"rest-api",
"market-data",
"trading",
"currency",
"exchange-rates",
"bitcoin",
"ethereum"
],
"homepage": "https://github.com/fcsapi/rest-api-php",
"authors": [
{
"name": "FCS API",
"email": "support@fcsapi.com",
"homepage": "https://fcsapi.com"
}
],
"support": {
"email": "support@fcsapi.com",
"issues": "https://github.com/fcsapi/rest-api-php/issues",
"source": "https://github.com/fcsapi/rest-api-php"
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"FcsApi\\": "src/"
}
},
"minimum-stability": "stable"
}