-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.02 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "unirate-api/unirate-api",
"description": "Official PHP client for the UniRate API — free currency exchange rates, historical data, and VAT rates.",
"type": "library",
"license": "MIT",
"keywords": ["unirate", "exchange-rates", "currency", "forex", "vat", "fintech"],
"homepage": "https://github.com/UniRate-API/unirate-api-php",
"authors": [
{
"name": "Unirate Team",
"homepage": "https://unirateapi.com"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"guzzlehttp/psr7": "^2"
},
"autoload": {
"psr-4": {
"UniRate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UniRate\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}