-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
37 lines (37 loc) · 956 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
36
37
{
"name": "aveiv/open-exchange-rates-api",
"description": "PHP wrapper for Open Exchange Rates API",
"type": "library",
"keywords": ["api", "currency"],
"homepage": "https://github.com/aveiv/open-exchange-rates-api",
"license": "MIT",
"authors": [
{
"name": "Alexandr Veliko-Ivanenko",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/aveiv/open-exchange-rates-api/issues"
},
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-curl": "*",
"ext-json": "*",
"aveiv/mixed-value": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"vimeo/psalm": "^3.14"
},
"autoload": {
"psr-4": {
"Aveiv\\OpenExchangeRatesApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Aveiv\\OpenExchangeRatesApi\\Tests\\": "tests/"
}
}
}