forked from Sylius/SyliusMoneyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (49 loc) · 1.37 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": "sylius/money-bundle",
"type": "symfony-bundle",
"description": "Currencies and money formatting engine bundle for Symfony2.",
"keywords": ["cash", "currency", "money", "currencies"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.3",
"symfony/intl": "~2.3",
"sylius/resource-bundle": "0.12.*@dev",
"mathiasverraes/money": "*@dev"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"twig/twig": "~1.0",
"symfony/form": "~2.3"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sylius\\Bundle\\MoneyBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Sylius\\Bundle\\MoneyBundle\\spec\\": "spec/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
}
},
"minimum-stability": "dev"
}