forked from Torann/laravel-currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 979 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
{
"name": "torann/currency",
"description": "This provides Laravel 5 with currency functions such as currency formatting and conversion using up-to-date exchange rates.",
"keywords": ["laravel", "currency", "money", "exchange rate", "yahoo finance", "OpenExchangeRates", "finance"],
"license": "BSD 2-Clause",
"authors": [
{
"name": "Daniel Stainback",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1|^6.0|^7.0",
"illuminate/cache": "~5.1|^6.0|^7.0"
},
"suggest": {
"illuminate/database": "Allows for storing of currencies in the database"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Torann\\Currency\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}