-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
36 lines (36 loc) · 966 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
{
"name": "ujjwal/currency-converter",
"description": "Currency Converter Class with features of caching and identifying currency from country Code",
"license": "MIT",
"keywords": [
"money",
"currency",
"currency-converter",
"converter",
"exchange-rates"
],
"autoload": {
"psr-4": {
"CurrencyConverter\\": "src/"
}
},
"authors": [
{
"name": "ojhaujjwal",
"email": "[email protected]"
}
],
"require-dev": {
"ext-curl": "*",
"zendframework/zend-cache": "2.*",
"phpunit/phpunit": "4.*"
},
"suggest": {
"ext-curl": "Using the rate provider for getting the rate from fixer.io using curl extension",
"zendframework/zend-cache": "To use Zend Cache component for caching"
},
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "5.* || 6.* || 7.*"
}
}