-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 3.06 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": "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.1",
"moneyphp/money": "^3.3 || ^4.0",
"symfony/config": "^5.4 || ^6.4 || ^7.1",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.1",
"symfony/deprecation-contracts": "^2.1 || ^3.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.1.1",
"doctrine/mongodb-odm": "^2.2",
"doctrine/mongodb-odm-bundle": "^4.3 || ^5.0",
"doctrine/orm": "^2.8 || ^3.0",
"jms/serializer": "^3.14",
"jms/serializer-bundle": "^3.8 || ^4.0 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1 || ^5.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "1.12.10",
"phpstan/phpstan-phpunit": "1.4.1",
"phpstan/phpstan-symfony": "1.4.12",
"phpunit/phpunit": "9.6.21",
"symfony/form": "^5.4 || ^6.4 || ^7.1",
"symfony/intl": "^5.4 || ^6.4 || ^7.1",
"symfony/phpunit-bridge": "^5.4 || ^6.4 || ^7.1",
"symfony/property-access": "^5.4 || ^6.4 || ^7.1",
"symfony/serializer": "^5.4 || ^6.4 || ^7.1",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.1",
"symfony/validator": "^5.4 || ^6.4 || ^7.1",
"twig/twig": "^2.13 || ^3.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.1.1",
"doctrine/mongodb-odm": "<2.2",
"doctrine/mongodb-odm-bundle": "<4.3",
"doctrine/orm": "<2.8",
"jms/serializer": "<3.14",
"symfony/form": "<5.4 || >=6.0 <6.4 || >=7.0 <7.1",
"symfony/serializer": "<5.4 || >=6.0 <6.4 || >=7.0 <7.1",
"symfony/validator": "<5.4 || >=6.0 <6.4 || >=7.0 <7.1",
"twig/twig": "<2.13"
},
"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"
}