-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
64 lines (64 loc) · 1.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "otherguy/php-currency-api",
"description": "A PHP API Wrapper to offer a unified programming interface for popular Currency Rate APIs.",
"keywords": [
"currency",
"currency rates",
"exchange rates",
"currency conversion",
"currency",
"currency-exchange-rates",
"composer-package",
"php-library",
"currency-converter-php",
"currency-api",
"exchange-rates",
"currency-rate-apis",
"fluent-interface",
"api-wrapper",
"currency-converter",
"currency-conversion",
"currency-exchange",
"exchange-rate-api",
"exchange-rates-api",
"php-package",
"php8",
"php74",
"php73"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Graf",
"email": "alex@otherguy.io"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"nikic/php-parser": "^4.10",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"ext-curl": "Faster HTTP requests"
},
"autoload": {
"psr-4": {
"Otherguy\\Currency\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Currency\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}