-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1.11 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
{
"name": "ongr/currency-exchange-bundle",
"description": "ONGR currency exchange bundle",
"type": "symfony-bundle",
"homepage": "http://ongr.io",
"license": "MIT",
"authors": [
{
"name": "ONGR team",
"homepage": "http://www.ongr.io"
}
],
"require": {
"php": ">=5.5",
"symfony/symfony": "~2.7|~3.0",
"doctrine/cache": "~1.4",
"ongr/elasticsearch-bundle": "~1.0"
},
"require-dev": {
"symfony/monolog-bundle": "~2.5",
"symfony/monolog-bridge": "~2.4",
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "~2.0",
"satooshi/php-coveralls": "~1.0",
"guzzlehttp/guzzle": "~6.0"
},
"suggest": {
"guzzlehttp/guzzle": "Install this package for using 'Open Exchange Rates' driver"
},
"autoload": {
"psr-4": {
"ONGR\\CurrencyExchangeBundle\\": ""
},
"exclude-from-classmap": ["/Tests/"]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}