-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 880 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
{
"name": "stichoza/nbg-currency",
"description": "National Bank of Georgia (NBG) currency service API wrapper",
"keywords": ["nbg", "bank", "georgia", "currency", "rate", "valuta", "kursi"],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/Stichoza/nbg-currency",
"authors": [
{
"name": "Levan Velijanashvili",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"nesbot/carbon": "^2.32.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Stichoza\\NbgCurrency\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stichoza\\NbgCurrency\\Tests\\": "tests/"
}
}
}