-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.82 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.82 KB
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
{
"name": "babdev/money-bundle",
"type": "symfony-bundle",
"description": "Bundle integrating the Money for PHP library with Symfony",
"keywords": ["money", "moneyphp", "currency", "symfony"],
"license": "MIT",
"require": {
"php": "^8.4",
"moneyphp/money": "^4.5",
"symfony/config": "^7.4 || ^8.0",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/http-kernel": "^7.4 || ^8.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.18 || ^3.0",
"doctrine/mongodb-odm": "^2.12",
"doctrine/mongodb-odm-bundle": "^5.3",
"doctrine/orm": "^2.20 || ^3.0",
"jms/serializer": "^3.31",
"jms/serializer-bundle": "^5.5",
"matthiasnoback/symfony-dependency-injection-test": "^6.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "2.1.33",
"phpstan/phpstan-phpunit": "2.0.11",
"phpstan/phpstan-symfony": "2.0.9",
"phpunit/phpunit": "12.5.4",
"symfony/form": "^7.4 || ^8.0",
"symfony/intl": "^7.4 || ^8.0",
"symfony/property-access": "^7.4 || ^8.0",
"symfony/serializer": "^7.4 || ^8.0",
"symfony/twig-bundle": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0",
"twig/twig": "^3.21"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.18",
"doctrine/mongodb-odm": "<2.12",
"doctrine/mongodb-odm-bundle": "<5.3",
"doctrine/orm": "<2.20",
"jms/serializer": "<3.31",
"symfony/form": "<7.4",
"symfony/serializer": "<7.4",
"symfony/validator": "<7.4",
"twig/twig": "<3.21"
},
"suggest": {
"ext/intl": "To use the intl Money\\MoneyFormatter instances",
"doctrine/mongodb-odm": "To use the Money\\Money class with the Doctrine MongoDB ODM",
"doctrine/orm": "To use the Money\\Money class with the Doctrine ORM",
"jms/serializer-bundle": "To use the Money\\Money class with the JMS Serializer",
"symfony/form": "To use the Money\\Money class with the Symfony Form component",
"symfony/serializer": "To use the Money\\Money class with the Symfony Serializer",
"symfony/validator": "To use the Money\\Money class with the Symfony Validator",
"twig/twig": "To use the Money\\Money class with Twig"
},
"autoload": {
"psr-4": {
"BabDev\\MoneyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabDev\\MoneyBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev"
}