forked from TheBigBrainsCompany/TbbcMoneyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.46 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
{
"name": "tbbc/money-bundle",
"type": "symfony-bundle",
"description": "This is a Symfony2 bundle that integrates the php money library from Mathias Verraes (Fowler pattern): https://github.com/mathiasverraes/money.",
"keywords": ["money", "currency", "fowler", "conversion"],
"homepage": "https://github.com/TheBigBrainsCompany/TbbcMoneyBundle",
"license": "MIT",
"authors": [
{
"name": "Philippe Le Van",
"homepage": "https://twitter.com/plv"
},
{
"name": "Sebastien Lefebvre"
}
],
"require": {
"php": ">=5.3.2",
"ext-curl" : "*",
"symfony/framework-bundle": "~2.1",
"mathiasverraes/money": "1.2.*",
"symfony/form": "~2.1",
"symfony/twig-bundle": "~2.1",
"symfony/console": "~2.1",
"symfony/dom-crawler": "~2.0"
},
"require-dev": {
"symfony/class-loader": "~2.1",
"symfony/yaml": "~2.1",
"symfony/finder": "~2.1",
"symfony/browser-kit": "~2.1",
"beberlei/DoctrineExtensions": "0.3.*",
"ext-sqlite3": "*",
"doctrine/doctrine-bundle": "~1.1",
"doctrine/orm": "~2.3",
"phpunit/phpunit": "~3.7",
"phpunit/dbunit": "~1.3"
},
"suggest": {
"doctrine/doctrine-bundle": "~1.1",
"doctrine/orm": "~2.3"
},
"autoload": {
"psr-0": { "Tbbc\\MoneyBundle": "" }
},
"target-dir": "Tbbc/MoneyBundle"
}