-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
76 lines (76 loc) · 2.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tbbc/money-bundle",
"type": "symfony-bundle",
"description": "This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.",
"keywords": ["money", "currency", "fowler", "conversion", "symfony"],
"homepage": "https://github.com/TheBigBrainsCompany/TbbcMoneyBundle",
"license": "MIT",
"authors": [
{
"name": "Philippe Le Van",
"homepage": "https://twitter.com/plv"
},
{
"name": "Sebastien Lefebvre"
},
{
"name": "Martin Aarhof"
}
],
"require": {
"php": "^8.1",
"ext-curl" : "*",
"ext-intl": "*",
"ext-simplexml": "*",
"moneyphp/money": "^4.5",
"symfony/form": "^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/dom-crawler": "^5.4|^6.0|^7.0",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/http-client": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Tbbc\\MoneyBundle\\": "src"
}
},
"require-dev": {
"ext-sqlite3": "*",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/mongodb-odm": "<2.8|^2.8.2",
"doctrine/mongodb-odm-bundle": "^4.6|^5.0",
"doctrine/orm": "^2.19.3|^3.0",
"florianv/exchanger": "^2.8.1",
"php-http/message": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"vimeo/psalm": "^5.20",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
"phpunit/phpunit": "^10.5.9",
"symfony/yaml": "^5.4|^6.0|^7.0",
"http-interop/http-factory-guzzle": "^1.2"
},
"autoload-dev": {
"psr-4": {
"Tbbc\\MoneyBundle\\Tests\\": "Tests"
}
},
"scripts": {
"fix": [
"vendor/bin/psalm",
"vendor/bin/phpunit --coverage-text --coverage-html=.build"
]
},
"suggest": {
"doctrine/doctrine-bundle": "~2.12",
"doctrine/mongodb-odm-bundle": "For usage with MongoDB",
"doctrine/orm": "~2.19",
"florianv/exchanger": "Exchanger is a PHP framework to work with currency exchange rates from various services."
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}