-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "florianv/swap-bundle",
"type": "symfony-bundle",
"description": "Integrates the Swap library with Symfony",
"keywords": ["money", "currency", "conversion", "rate", "exchange", "symfony", "bundle"],
"homepage": "https://github.com/florianv/FlorianvSwapBundle",
"license": "MIT",
"authors": [
{
"name": "Florian Voutzinos",
"email": "florian@voutzinos.com",
"homepage": "http://florian.voutzinos.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": "^7.1.3|^8.0",
"symfony/framework-bundle": "~3.0|~4.0|~5.0|~6.0|~7.0",
"florianv/swap": "^4.0"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.0",
"php-http/message": "^1.7",
"symfony/cache": "~3.0|~4.0|~5.0|~6.0|~7.0",
"phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0",
"nyholm/psr7": "^1.1"
},
"suggest": {
"symfony/cache": "For caching"
},
"autoload": {
"psr-4": {
"Florianv\\SwapBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}