-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.46 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
{
"name": "abstractapi/php-exchange-rates",
"description": "AbstractExchangeRates - Wrapper to quickly start using the powerful AbstractAPI's exchange rates service in your projects.",
"version": "1.0.0",
"type": "library",
"keywords": ["abstract", "abstractapi", "api", "Currency", "Currencies", "Exchange rates", "Currency exchange", "free", "library", "php", "php-library", "wrapper"],
"homepage": "https://github.com/abstractapi/php-exchange-rates",
"readme": "README.md",
"time": "2021-05-28",
"license": "MIT",
"authors": [
{
"name": "Benjamin Bouchet",
"email": "[email protected]",
"homepage": "https://www.abstractapi.com"
}
],
"support": {
"source": "https://github.com/abstractapi/php-exchange-rates",
"docs": "https://app.abstractapi.com/api/exchange-rates/documentation"
},
"scripts": {
"check": [
],
"fix": [
],
"versions": [
]
},
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "7.0.*",
"vlucas/phpdotenv": "^2.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"Abstractapi\\ExchangeRates\\": "src/AbstractExchangeRates/"
}
},
"autoload-dev": {
"psr-4": {
"Abstractapi\\ExchangeRates\\Tests\\": "tests/"
}
}
}