forked from kucharovic/money-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.12 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
{
"name": "kucharovic/money-bundle",
"type": "symfony-bundle",
"description": "This bundle provides integration for Money library in your Symfony project.",
"keywords": [
"php",
"money",
"moneyphp",
"symfony",
"bundle",
"doctrine",
"twig"
],
"homepage": "https://github.com/kucharovic/money-bundle",
"license": "MIT",
"authors": [
{
"name": "Jakub Kucharovic",
"email": "jakub@kucharovic.cz"
}
],
"autoload": {
"psr-4": {
"JK\\MoneyBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"conflict": {
"symfony/form": "<3.0",
"twig/twig": "<1.30"
},
"require": {
"php": "^5.5.9 || ^7.0",
"ext-intl": "*",
"symfony/framework-bundle": "^3.0 || ^4.0",
"doctrine/orm": "^2.5",
"moneyphp/money": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0",
"symfony/form": "^3.0 || ^4.0",
"twig/twig": "^1.30 || ^2.0"
},
"suggest": {
"twig/twig": "To use Twig filter to display Money object in your templates",
"symfony/form": "To use Symfony FormType for handling Money data"
}
}