-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 943 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
38
39
40
41
{
"name": "umpirsky/locurro",
"type": "library",
"description": "Local currency converter.",
"license": "MIT",
"authors": [
{
"name": "Saša Stamenković",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"mathiasverraes/money": "^1.2",
"willdurand/geocoder": "^3.0",
"geoip2/geoip2": "^2.3",
"florianv/swap": "^2.2",
"zf1/zend-locale": "^1.12",
"zf1/zend-currency": "^1.12"
},
"require-dev": {
"doctrine/cache": "^1.4",
"twig/twig": "^1.21",
"phpspec/phpspec": "^2.2"
},
"suggest": {
"doctrine/cache": "^1.4",
"twig/twig": "^1.21"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Locurro\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}